Use this procedure to enable logging of memory usage details in the ServerDebugLog.xml log file.
To configure the logging of memory details:
-
Navigate to the Server subfolder of the Cobra installation folder.
-
Locate the ServerService.exe.config file and open it using a text editor (such as Notepad).
-
To enable memory usage logging, add the
LogMemoryUsage option to the file. If the option is already present, make sure to set the value to
1.
Before
|
<appSettings>
<add key="ConcurrentProcesses" value="8" />
<add key="PerformDomainAuthentication" value="
<add key="Roles" value="" />
</appSettings>
|
After
|
<appSettings>
<add key="ConcurrentProcesses" value="8" />
<add key="PerformDomainAuthentication" value="
<add key="Roles" value="" />
<add key ="LogMemoryUsage" value="1"/>
</appSettings>
|
-
To disable memory usage logging, set the
LogMemoryUsage option to
0, or remove the changes above.
Before
|
<add key ="LogMemoryUsage" value="1"/>
|
After
|
<add key ="LogMemoryUsage" value="0"/>
|