You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

logback-test.xml 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!--
  3. ~ SonarQube
  4. ~ Copyright (C) 2009-2019 SonarSource SA
  5. ~ mailto:info AT sonarsource DOT com
  6. ~
  7. ~ This program is free software; you can redistribute it and/or
  8. ~ modify it under the terms of the GNU Lesser General Public
  9. ~ License as published by the Free Software Foundation; either
  10. ~ version 3 of the License, or (at your option) any later version.
  11. ~
  12. ~ This program is distributed in the hope that it will be useful,
  13. ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. ~ Lesser General Public License for more details.
  16. ~
  17. ~ You should have received a copy of the GNU Lesser General Public License
  18. ~ along with this program; if not, write to the Free Software Foundation,
  19. ~ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  20. -->
  21. <configuration>
  22. <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
  23. <encoder>
  24. <pattern>
  25. %d{HH:mm:ss.SSS} %-5level %logger{36} - %msg%n
  26. </pattern>
  27. </encoder>
  28. </appender>
  29. <logger name="org.apache" level="ERROR"/>
  30. <root level="INFO">
  31. <appender-ref ref="STDOUT"/>
  32. </root>
  33. </configuration>