diff options
author | Sean Dague | 2009-03-06 21:14:50 +0000 |
---|---|---|
committer | Sean Dague | 2009-03-06 21:14:50 +0000 |
commit | 05ebd4479189d27daa4ca998f51b46b841f75ab4 (patch) | |
tree | 9b0595d6fffb284cf5d6aba8d63551e8f534598e /bin/OpenSim.Region.ScriptEngine.Tests.dll.config | |
parent | * minor: remove some mono compiler warnings (diff) | |
download | opensim-SC_OLD-05ebd4479189d27daa4ca998f51b46b841f75ab4.zip opensim-SC_OLD-05ebd4479189d27daa4ca998f51b46b841f75ab4.tar.gz opensim-SC_OLD-05ebd4479189d27daa4ca998f51b46b841f75ab4.tar.bz2 opensim-SC_OLD-05ebd4479189d27daa4ca998f51b46b841f75ab4.tar.xz |
add back .config files for all tests in an attempt to debug why these
things crash so much.
This will generate a lot more log messages on make test, even some scary
looking exceptions. Don't worry, that's normal.
Diffstat (limited to 'bin/OpenSim.Region.ScriptEngine.Tests.dll.config')
-rw-r--r-- | bin/OpenSim.Region.ScriptEngine.Tests.dll.config | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/bin/OpenSim.Region.ScriptEngine.Tests.dll.config b/bin/OpenSim.Region.ScriptEngine.Tests.dll.config new file mode 100644 index 0000000..73a6f12 --- /dev/null +++ b/bin/OpenSim.Region.ScriptEngine.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> | ||