diff options
Diffstat (limited to 'bin/OpenSim.Region.CoreModules.Tests.dll.config')
-rw-r--r-- | bin/OpenSim.Region.CoreModules.Tests.dll.config | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/bin/OpenSim.Region.CoreModules.Tests.dll.config b/bin/OpenSim.Region.CoreModules.Tests.dll.config new file mode 100644 index 0000000..73a6f12 --- /dev/null +++ b/bin/OpenSim.Region.CoreModules.Tests.dll.config | |||
@@ -0,0 +1,24 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" ?> | ||
2 | <configuration> | ||
3 | <configSections> | ||
4 | <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler,log4net" /> | ||
5 | </configSections> | ||
6 | |||
7 | <log4net> | ||
8 | <!-- A1 is set to be a ConsoleAppender --> | ||
9 | <appender name="A1" type="log4net.Appender.ConsoleAppender"> | ||
10 | |||
11 | <!-- A1 uses PatternLayout --> | ||
12 | <layout type="log4net.Layout.PatternLayout"> | ||
13 | <!-- Print the date in ISO 8601 format --> | ||
14 | <conversionPattern value="%date [%thread] %-5level %logger %ndc - %message%newline" /> | ||
15 | </layout> | ||
16 | </appender> | ||
17 | |||
18 | <!-- Set root logger level to DEBUG and its only appender to A1 --> | ||
19 | <root> | ||
20 | <level value="DEBUG" /> | ||
21 | <appender-ref ref="A1" /> | ||
22 | </root> | ||
23 | </log4net> | ||
24 | </configuration> | ||