How to configure properties so that one logger can write to the console and another to the file ?? Here are my properties
# Root logger option log4j.rootLogger=DEBUG,console,file # Redirect log messages to console log4j.appender.console=org.apache.log4j.ConsoleAppender log4j.appender.console.Target=System.out log4j.appender.console.layout=org.apache.log4j.PatternLayout # Redirect log messages to a log file, support file rolling. log4j.appender.file=org.apache.log4j.RollingFileAppender log4j.appender.file.File=chain\\log.log log4j.appender.file.MaxFileSize=5MB log4j.appender.file.MaxBackupIndex=10 log4j.appender.file.layout=org.apache.log4j.PatternLayout log4j.appender.file.layout.ConversionPattern=%d{yyyy-MM-dd HH:mm:ss} %-5p %c{1}:%L - %m%n
log4j.rootLogger=DEBUG,console,filewith somelog4j.logger.APP=DEBUG, console,file. In the program code, initialization of the logger should be done like this:logger = Logger.getLogger('APP');- Igor Kudryashovlog4j.logger.APP=DEBUG, console,filein this case in the appenders console and file - Igor Kudryashov