Details
Description
PROBLEM
Using the following configuration file, all messages in php log remain as TTCC format.
log4php.appender.default=LoggerAppenderPhp
log4php.appender.default.layout=LoggerPatternLayout
log4php.appender.default.layout.conversionPattern="%-5p [%t] %c: %m%n"
log4php.rootLogger=DEBUG, default
SOLUTION
In LoggerAppenderPhp class:
First I removed the setting of the layout in activateOptions. Second I added the requiresLayout (defaulting to true) instance member.