paulwong

          LOGBACK TUTORIA

          https://github.com/abdulwaheed18/Slf4jTutorial 

          http://stackoverflow.com/questions/10465301/tomcat-war-configure-logback-to-use-app-name-in-path

          <configuration>

              <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
                  <encoder class="ch.qos.logback.classic.encoder.PatternLayoutEncoder">
                      <Pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n
                      </Pattern>
                  </encoder>
              </appender>


              <appender name="FILE"
                  class
          ="ch.qos.logback.core.rolling.RollingFileAppender">
                  <file>testFile7.log</file>
                  <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy">
                      <!-- daily rollover
                      Once any of the below condition met, it will change the file name as below and compressed it. 
          -->

                      <fileNamePattern>logFile.%d{yyyy-MM-dd}.%i.log.zip
                      </fileNamePattern>

                      <!-- keep 30 days' worth of history -->
                      <maxHistory>30</maxHistory>
                      <!-- or whenever the file size reaches 10MB -->
                      <timeBasedFileNamingAndTriggeringPolicy
                          
          class="ch.qos.logback.core.rolling.SizeAndTimeBasedFNATP">
                          <maxFileSize>10MB</maxFileSize>
                      </timeBasedFileNamingAndTriggeringPolicy>
                  </rollingPolicy>

                  <encoder>
                      <pattern>%-4relative [%thread] %-5level %logger{35} - %msg%n
                      </pattern>
                  </encoder>
              </appender>

              <root level="INFO">
                  <appender-ref ref="STDOUT" />
                  <appender-ref ref="FILE" />
              </root>
          </configuration>

          posted on 2014-04-03 08:10 paulwong 閱讀(523) 評論(0)  編輯  收藏 所屬分類: J2EEJ2SELOGBACK

          主站蜘蛛池模板: 武安市| 绵竹市| 昭平县| 临江市| 孙吴县| 水城县| 安平县| 大邑县| 通辽市| 兴安县| 久治县| 钟祥市| 广州市| 汝阳县| 中卫市| 西安市| 久治县| 山阳县| 富顺县| 柳州市| 隆回县| 新宁县| 黄浦区| 天津市| 金沙县| 依安县| 平谷区| 仙桃市| 辉县市| 丰原市| 四川省| 鄄城县| 白河县| 巩义市| 敖汉旗| 平阳县| 霍城县| 吕梁市| 龙川县| 惠水县| 云龙县|