logback-session.xml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <!--
  2. ~ Licensed to the Apache Software Foundation (ASF) under one
  3. ~ or more contributor license agreements. See the NOTICE file
  4. ~ distributed with this work for additional information
  5. ~ regarding copyright ownership. The ASF licenses this file
  6. ~ to you under the Apache License, Version 2.0 (the
  7. ~ "License"); you may not use this file except in compliance
  8. ~ with the License. You may obtain a copy of the License at
  9. ~
  10. ~ http://www.apache.org/licenses/LICENSE-2.0
  11. ~
  12. ~ Unless required by applicable law or agreed to in writing, software
  13. ~ distributed under the License is distributed on an "AS IS" BASIS,
  14. ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. ~ See the License for the specific language governing permissions and
  16. ~ limitations under the License.
  17. -->
  18. <configuration>
  19. <appender name="file" class="ch.qos.logback.core.FileAppender">
  20. <file>${log.file}</file>
  21. <append>false</append>
  22. <encoder>
  23. <pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{60} %X{sourceThread} - %msg%n</pattern>
  24. </encoder>
  25. </appender>
  26. <appender name="console" class="ch.qos.logback.core.ConsoleAppender">
  27. <encoder>
  28. <pattern>%d{yyyy-MM-dd HH:mm:ss} %-5level %logger{60} %X{sourceThread} - %msg%n</pattern>
  29. </encoder>
  30. </appender>
  31. <logger name="ch.qos.logback" level="WARN" />
  32. <root level="${ROOT_LOG_LEVEL:-INFO}">
  33. <appender-ref ref="file"/>
  34. <appender-ref ref="console"/>
  35. </root>
  36. </configuration>