OpenSim.Region.ClientStack.LindenUDP.Tests.dll.config 793 B

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <configuration>
  3. <configSections>
  4. <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler,log4net" />
  5. </configSections>
  6. <log4net>
  7. <!-- A1 is set to be a ConsoleAppender -->
  8. <appender name="A1" type="log4net.Appender.ConsoleAppender">
  9. <!-- A1 uses PatternLayout -->
  10. <layout type="log4net.Layout.PatternLayout">
  11. <!-- Print the date in ISO 8601 format -->
  12. <conversionPattern value="%date [%thread] %-5level %logger %ndc - %message%newline" />
  13. </layout>
  14. </appender>
  15. <!-- Set root logger level to DEBUG and its only appender to A1 -->
  16. <root>
  17. <level value="DEBUG" />
  18. <appender-ref ref="A1" />
  19. </root>
  20. </log4net>
  21. </configuration>