aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/OpenSim.Region.ClientStack.LindenUDP.Tests.dll.config
blob: 73a6f12b3b0ca5c840be418275b1be8fe6d281ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <configSections>
    <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler,log4net" />
  </configSections>
  
  <log4net>
    <!-- A1 is set to be a ConsoleAppender -->
    <appender name="A1" type="log4net.Appender.ConsoleAppender">
      
        <!-- A1 uses PatternLayout -->
        <layout type="log4net.Layout.PatternLayout">
          <!-- Print the date in ISO 8601 format -->
          <conversionPattern value="%date [%thread] %-5level %logger %ndc - %message%newline" />
        </layout>
    </appender>
    
    <!-- Set root logger level to DEBUG and its only appender to A1 -->
    <root>
      <level value="DEBUG" />
      <appender-ref ref="A1" />
    </root>
  </log4net>
</configuration>