# There needs to be log4j configuration information for the rootLogger at least # If all the other log4j sections are commented out, all logging will use the # root logger. To change the quantity of logging, set the level to DEBUG INFO, WARN, # ERROR or FATAL. To send logging to a file instead of the console, switch from the # ConsoleAppender to a FileAppender. log4j.rootLogger=DEBUG, A1 log4j.appender.A1=org.apache.log4j.ConsoleAppender log4j.appender.A1.layout=org.apache.log4j.PatternLayout log4j.appender.A1.layout.ConversionPattern=%-5p %c{1} - %m%n log4j.logger.cipres.registry=DEBUG,App2Appender log4j.additivity.cipres.registry=false log4j.appender.App2Appender=org.apache.log4j.DailyRollingFileAppender log4j.appender.App2Appender.File=${cipres.user.tmp}/${cipres.host}_registry.log log4j.appender.App2Appender.datePattern='.'yyyy-MM-dd log4j.appender.App2Appender.append=true log4j.appender.App2Appender.layout=org.apache.log4j.PatternLayout log4j.appender.App2Appender.layout.ConversionPattern=%d{ISO8601} %-5p REGISTRY.%c{1} - %m%n # log4j.appender.App2Appender=org.apache.log4j.FileAppender # log4j.appender.App2Appender.File=${cipres.user.tmp}/${cipres.host}_registry.log # log4j.appender.App2Appender.layout=org.apache.log4j.PatternLayout # log4j.appender.App2Appender.layout.ConversionPattern=%-5p REGISTRY.%c{1} - %m%n log4j.logger.PropertyService=DEBUG,A3 log4j.additivity.PropertyService=false log4j.appender.A3=org.apache.log4j.FileAppender log4j.appender.A3.File=${cipres.user.tmp}/${cipres.host}_propsvc.log log4j.appender.A3.layout=org.apache.log4j.PatternLayout log4j.appender.A3.layout.ConversionPattern=%-5p PROPERTYSVC.%c{1} - %m%n # Recidcm3 is always started by the registry so if it logs to the console it will # be read by the registry's streamgobbler and sent to the registry's log. log4j.logger.cipres.recidcm3=DEBUG,A4 log4j.additivity.cipres.recidcm3=false log4j.appender.A4=org.apache.log4j.ConsoleAppender log4j.appender.A4.layout=org.apache.log4j.PatternLayout log4j.appender.A4.layout.ConversionPattern=%-5p RECIDCM3.%c{1} - %m%n