diff options
author | Melanie | 2011-10-25 03:26:20 +0100 |
---|---|---|
committer | Melanie | 2011-10-25 03:26:20 +0100 |
commit | 740077a291dbd95dcf5e8e57561443522dabb72f (patch) | |
tree | 533ed10fa917a274e98aff1a299e993b8e4d9084 /bin | |
parent | Merge commit '4c9400e6460a73baa2d687afe73a62c6efca9f37' into bigmerge (diff) | |
parent | Add new EventQueueTests with basic test to check that adding a client registe... (diff) | |
download | opensim-SC_OLD-740077a291dbd95dcf5e8e57561443522dabb72f.zip opensim-SC_OLD-740077a291dbd95dcf5e8e57561443522dabb72f.tar.gz opensim-SC_OLD-740077a291dbd95dcf5e8e57561443522dabb72f.tar.bz2 opensim-SC_OLD-740077a291dbd95dcf5e8e57561443522dabb72f.tar.xz |
Merge commit 'e28e2d24c714c3fba1cba60097986a1c1c28c6c0' into bigmerge
Diffstat (limited to 'bin')
-rw-r--r-- | bin/OpenSim.Region.ClientStack.LindenCaps.Tests.dll.config | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/bin/OpenSim.Region.ClientStack.LindenCaps.Tests.dll.config b/bin/OpenSim.Region.ClientStack.LindenCaps.Tests.dll.config new file mode 100644 index 0000000..a3f681d --- /dev/null +++ b/bin/OpenSim.Region.ClientStack.LindenCaps.Tests.dll.config | |||
@@ -0,0 +1,33 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" ?> | ||
2 | <configuration> | ||
3 | <configSections> | ||
4 | <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler,log4net" /> | ||
5 | </configSections> | ||
6 | <runtime> | ||
7 | <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> | ||
8 | <dependentAssembly> | ||
9 | <assemblyIdentity name="nunit.framework" publicKeyToken="96d09a1eb7f44a77" culture="Neutral" /> | ||
10 | <bindingRedirect oldVersion="2.0.6.0" newVersion="2.4.6.0" /> | ||
11 | <bindingRedirect oldVersion="2.1.4.0" newVersion="2.4.6.0" /> | ||
12 | <bindingRedirect oldVersion="2.2.8.0" newVersion="2.4.6.0" /> | ||
13 | </dependentAssembly> | ||
14 | </assemblyBinding> | ||
15 | </runtime> | ||
16 | <log4net> | ||
17 | <!-- A1 is set to be a ConsoleAppender --> | ||
18 | <appender name="A1" type="log4net.Appender.ConsoleAppender"> | ||
19 | |||
20 | <!-- A1 uses PatternLayout --> | ||
21 | <layout type="log4net.Layout.PatternLayout"> | ||
22 | <!-- Print the date in ISO 8601 format --> | ||
23 | <conversionPattern value="%date [%thread] %-5level %logger %ndc - %message%newline" /> | ||
24 | </layout> | ||
25 | </appender> | ||
26 | |||
27 | <!-- Set root logger level to DEBUG and its only appender to A1 --> | ||
28 | <root> | ||
29 | <level value="DEBUG" /> | ||
30 | <appender-ref ref="A1" /> | ||
31 | </root> | ||
32 | </log4net> | ||
33 | </configuration> | ||