mirror of
https://github.com/opensim/opensim.git
synced 2026-05-14 18:55:39 +08:00
Among other things this allows pCampbot to work under Windows since libopenmateverse now ships the same log4net.dll (publicly signed) as OpenSimulator This also updates the libopenmetaverse embedded libopenjpeg from 1.3 to 1.5. DLL naming and mapping for non-Windows libopenjpeg changes to remove version number to make future udpates easier and bring it into line with names of other shipped DLLs. libopenjpeg updates have been made for OSX, Windows (32 and 64 bit) and Linux (32 and 64 bit). Please report any issues.
29 lines
978 B
XML
Executable File
29 lines
978 B
XML
Executable File
<?xml version="1.0" encoding="utf-8" ?>
|
|
<configuration>
|
|
<configSections>
|
|
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler,log4net" />
|
|
</configSections>
|
|
<appSettings>
|
|
</appSettings>
|
|
<log4net>
|
|
<appender name="Console" type="OpenSim.Framework.Console.OpenSimAppender, OpenSim.Framework.Console">
|
|
<layout type="log4net.Layout.PatternLayout">
|
|
<conversionPattern value="%date{HH:mm:ss.fff} - %message%newline" />
|
|
</layout>
|
|
</appender>
|
|
<appender name="LogFileAppender" type="log4net.Appender.FileAppender">
|
|
<file value="pCampBot.log" />
|
|
<appendToFile value="true" />
|
|
<layout type="log4net.Layout.PatternLayout">
|
|
<conversionPattern value="%date %-5level - %logger %message%newline" />
|
|
</layout>
|
|
</appender>
|
|
|
|
<root>
|
|
<level value="DEBUG" />
|
|
<appender-ref ref="Console" />
|
|
<appender-ref ref="LogFileAppender" />
|
|
</root>
|
|
</log4net>
|
|
</configuration>
|