
http://bugzilla.qos.ch/show_bug.cgi?id=112 ------- Comment #1 from toni.heimala@imagesoft.fi 2007-12-11 12:11 ------- Forgot the logging configuration file, this is how it looks like: --------------------------------- logger.xml --------------------------------- <?xml version="1.0" encoding="UTF-8" ?> <configuration> <consolePlugin /> <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> <layout class="ch.qos.logback.classic.PatternLayout"> <pattern>%d{HH:mm:ss.SSS} - %msg%n</pattern> </layout> </appender> <appender name="FILE-MAIN" class="ch.qos.logback.core.rolling.RollingFileAppender"> <file>logs/main.log</file> <rollingPolicy class="ch.qos.logback.core.rolling.FixedWindowRollingPolicy"> <FileNamePattern>logs/main-%i.log</FileNamePattern> <MinIndex>1</MinIndex> <MaxIndex>3</MaxIndex> </rollingPolicy> <triggeringPolicy class="ch.qos.logback.core.rolling.SizeBasedTriggeringPolicy"> <MaxFileSize>500MB</MaxFileSize> </triggeringPolicy> <layout class="ch.qos.logback.classic.PatternLayout"> <Pattern>%date %level [%thread] %msg%n</Pattern> </layout> </appender> <root> <appender-ref ref="FILE-MAIN" /> <level value="DEBUG" /> </root> </configuration> -- Configure bugmail: http://bugzilla.qos.ch/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee.