Details
Description
I downloaded the current version of log4php and used an existing configuration:
rootLogger (level = FATAL, appender = echo)
customLog (level = DEBUG, appender = dailyfile)
When i log to customLog with DEBUG level, i also get the message printed on screen:
Logger::getLogger('customLog')->debug('test');
When I change rootLogger's appender to dailyfile, the message is logged twice in the log file.