I have the following configs for my logs :
log4j.rootCategory=INFO, RollLogFile
log4j.logger.ReportLog=INFO,ReportLog
After, i set two appenders for my logs and some properties. Im doing this in my code:
reportLogger = LogManager.getLogger("ReportLog");
And after that
reportLogger.info("blabla bla bla ");
Why this line is also logged in RollLogFile`s file?