...
To set the log level for console and file output:
Close ICEIgloo Core Engine
Navigate to
C:\\ProgramData\\Igloo Vision\\IglooCoreEngine\\settings
in your file explorer.Open
EditorWindowsSetting.xml
with a text editorLocate the lines with
<logLevelConsole>
and<logLevelFile>
. The number between these tags represents the current log level for console and file output, respectively.Replace the number between these tags with your desired log level (0 to 5).
For example, if you want to log warnings, errors and critical issues, your lines should look like:
<logLevelConsole>2</logLevelConsole>
<logLevelFile>2</logLevelFile>
Save and close the file.
...