Skip to content
zarunbal edited this page May 7, 2018 · 6 revisions

Logging

The log files are placed under %appdata%/LogExpert/Logs (For Systems Win7 or newer %appdata% is c:\Users\<username>\AppData\Roaming).

To change the LogLevel edit the LogExpert.exe.config and change minlevel to one of these Trace|Debug|Info|Warn|Error|Fatal Example:

    <rules>
      <logger name="Program" minlevel="Debug" writeTo="logfile" />
      <logger name="*" minlevel="Debug" writeTo="logfile" />
    </rules>

Event Log

If the program closes with the Windows Error Reporting then the error gets written to the Windows Event Log. You can access it by executing ´eventvwr´ on your PC. Then under ´Windows Logs -> Application´ should be two entries (With Source ´Application Error´ and ´.NET Runtime´) these contains the infos about the crash.

Error during load of Plugins

On some deployments there is a possibility that the files are "Blocked" by windows because there are from the internet. If there is a Error message like below in the log file. Or there is no Columnizer / Plugin displayed.

System.NotSupportedException: An attempt was made to load an assembly from a network location which would have caused the assembly to be sandboxed in previous versions of the .NET Framework.

Then please check in the properties of the dll's if there is on the bottom part a section about security which mentions something like This file came from antoher computer and might be blocket to help protect this computer Check the checkbox or click on the Button (depends on the windows version). This procedure has to be executed on all dll.

Clone this wiki locally