log4j.rootLogger=debug, stdout log4j.appender.stdout=org.apache.log4j.ConsoleAppender log4j.appender.stdout.layout=org.apache.log4j.PatternLayout # Pattern to output the caller's file name and line number. log4j.appender.stdout.layout.ConversionPattern=%5p [%t] (%F:%L) - %m%n # BEGIN APPENDER: ROLLING FILE APPENDER (rolling) # first: type of appender (fully qualified class name) log4j.appender.rolling=org.apache.log4j.RollingFileAppender # second: Any configuration information needed for that appender. # Many appenders require a layout. log4j.appender.rolling.File=${user.dir}/gvSIG/gvSIG.log log4j.appender.rolling.MaxFileSize=512KB # Keep one backup file log4j.appender.rolling.MaxBackupIndex=1 log4j.appender.rolling.layout=org.apache.log4j.PatternLayout log4j.appender.rolling.layout.ConversionPattern=%p %t %c - %m%n # Possible information overload? # log4j.appender.stdout.layout=org.apache.log4j.PatternLayout # additionally, some layouts can take additional information -- # like the ConversionPattern for the PatternLayout. # log4j.appender.stdout.layout.ConversionPattern=%d %-5p %-17c{2} (%30F:%L) %3x - %m%n # END APPENDER: ROLLING FILE APPENDER (rolling)