The Server Density updater has logging built into it, for debugging or locating problems.
The logging is only available in version 1.5.0.0 and above.
This is not enabled by default, but can be enabled with the following steps:
- Right click on Notepad on the start menu and press 'Run as Administrator'.
- Copy the following into the newly created file:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" />
</configSections>
<log4net>
<appender name="ConsoleAppender" type="log4net.Appender.ConsoleAppender" >
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%date [%thread] %-5level %logger [%ndc] -
%message%newline" />
</layout>
</appender>
<appender name="FileAppender" type="log4net.Appender.FileAppender">
<file value="updater-log.txt" />
<appendToFile value="true" />
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%date [%thread] %-5level %logger
[%property{NDC}] - %message%newline" />
</layout>
</appender>
<root>
<level value="ALL" />
<appender-ref ref="FileAppender" />
</root>
</log4net>
<startup>
<supportedRuntime version="v2.0.50727"/>
</startup>
</configuration> - Save this file as
BoxedIce.ServerDensity.Agent.Downloader.exe.config
inC:\Program Files (x86)\Boxed Ice\Server Density
- Navigate to the
C:\Program Files (x86)\Boxed Ice\Server Density
folder and right click on theBoxedIce.ServerDensity.Agent.Downloader.exe
and press 'Run as Adminstrator', or run the update process from the Server Density agent screen. - The log file will be created in this directory as
updater-log.txt
Comments