aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/bin/Robust.exe.config
diff options
context:
space:
mode:
authorDiva Canto2010-04-22 07:25:32 -0700
committerDiva Canto2010-04-22 07:25:32 -0700
commitc9da66728a6f6bc1304b3f0ec70bd06c32d064c2 (patch)
tree321fec136a0dd9a0858071950892b11cabd82098 /bin/Robust.exe.config
parentMake the detection cone in attachments face in the direction of the avatar, (diff)
downloadopensim-SC_OLD-c9da66728a6f6bc1304b3f0ec70bd06c32d064c2.zip
opensim-SC_OLD-c9da66728a6f6bc1304b3f0ec70bd06c32d064c2.tar.gz
opensim-SC_OLD-c9da66728a6f6bc1304b3f0ec70bd06c32d064c2.tar.bz2
opensim-SC_OLD-c9da66728a6f6bc1304b3f0ec70bd06c32d064c2.tar.xz
Renamed OpenSim.Server.exe to Robust.exe and corresponding .ini's and config.
Diffstat (limited to 'bin/Robust.exe.config')
-rw-r--r--bin/Robust.exe.config33
1 files changed, 33 insertions, 0 deletions
diff --git a/bin/Robust.exe.config b/bin/Robust.exe.config
new file mode 100644
index 0000000..c2d93c0
--- /dev/null
+++ b/bin/Robust.exe.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 <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
19 <appender name="LogFileAppender" type="log4net.Appender.FileAppender">
20 <file value="OpenSim.log" />
21 <appendToFile value="true" />
22 <layout type="log4net.Layout.PatternLayout">
23 <conversionPattern value="%date %-5level - %logger %message%newline" />
24 </layout>
25 </appender>
26
27 <root>
28 <level value="DEBUG" />
29 <appender-ref ref="Console" />
30 <appender-ref ref="LogFileAppender" />
31 </root>
32 </log4net>
33</configuration>