There are two different types of logging available for the Windows Desktop Client.
You'll be using the tool DebugView.exe to view trace logging information. It can be downloaded here: https://docs.microsoft.com/en-us/sysinternals/downloads/debugview
To log trace information to a file, add the following to Argus.exe.config. (Default location: C:\Program Files\RealNetworks\SAFR\Argus\Argus.exe.config
)
<configuration>
<system.diagnostics>
<trace autoflush="true" indentsize="4" >
<listeners>
<add name="SAFRTraceLogFileListener"
type="System.Diagnostics.TextWriterTraceListener"
initializeData="C:\Users\user\AppData\Local\Temp\SAFRDesktop.log" >
<filter type="System.Diagnostics.EventTypeFilter" initializeData="All" />
</add>
<remove name="Default" />
</listeners>
</trace>
</system.diagnostics>
</configuration>
The app.config tracing configuration schema is located here: https://docs.microsoft.com/en-us/dotnet/framework/configure-apps/file-schema/trace-debug/
To view Windows Event Log information, do the following: