diff options
author | Diva Canto | 2010-04-14 10:36:03 -0700 |
---|---|---|
committer | Diva Canto | 2010-04-14 10:36:03 -0700 |
commit | bdc03dbff958459d0e2fd96045a859455293bf37 (patch) | |
tree | 576ce349892b10976a3b56a0bd39efd631bd7e51 /bin/Robust.32BitLaunch.exe.config | |
parent | Applying patch from lkalif to add support for inventory links to the SimianGr... (diff) | |
download | opensim-SC_OLD-bdc03dbff958459d0e2fd96045a859455293bf37.zip opensim-SC_OLD-bdc03dbff958459d0e2fd96045a859455293bf37.tar.gz opensim-SC_OLD-bdc03dbff958459d0e2fd96045a859455293bf37.tar.bz2 opensim-SC_OLD-bdc03dbff958459d0e2fd96045a859455293bf37.tar.xz |
* Added 32bitLauncher for Robust. Still need to test it on a 64 bit machine.
* PrimitiveBaseShape wants to be be committed too -- EOF.
Diffstat (limited to '')
-rw-r--r-- | bin/Robust.32BitLaunch.exe.config | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/bin/Robust.32BitLaunch.exe.config b/bin/Robust.32BitLaunch.exe.config new file mode 100644 index 0000000..dae45ff --- /dev/null +++ b/bin/Robust.32BitLaunch.exe.config | |||
@@ -0,0 +1,32 @@ | |||
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 | <gcConcurrent enabled="true" /> | ||
8 | <gcServer enabled="true" /> | ||
9 | </runtime> | ||
10 | <appSettings> | ||
11 | </appSettings> | ||
12 | <log4net> | ||
13 | <appender name="Console" type="OpenSim.Framework.Console.OpenSimAppender, OpenSim.Framework.Console"> | ||
14 | <layout type="log4net.Layout.PatternLayout"> | ||
15 | <conversionPattern value="%date{HH:mm:ss} - %message%newline" /> | ||
16 | </layout> | ||
17 | </appender> | ||
18 | <appender name="LogFileAppender" type="log4net.Appender.FileAppender"> | ||
19 | <file value="Robust.32BitLaunch.log" /> | ||
20 | <appendToFile value="true" /> | ||
21 | <layout type="log4net.Layout.PatternLayout"> | ||
22 | <conversionPattern value="%date %-5level - %logger %message%newline" /> | ||
23 | </layout> | ||
24 | </appender> | ||
25 | |||
26 | <root> | ||
27 | <level value="DEBUG" /> | ||
28 | <appender-ref ref="Console" /> | ||
29 | <appender-ref ref="LogFileAppender" /> | ||
30 | </root> | ||
31 | </log4net> | ||
32 | </configuration> | ||