There are different ways to see log from the player. This solution will show custom settings available for the dise premium version 36 and newer.
TABLE OF CONTENTS
To see the solutions on how to add a custom setting and available custom settings read this article. https://support.dise.com/support/solutions/articles/9000081899-custom-settings
Log levels to use, Emergency = 0, Alert = 1, Critical = 2, Error = 3, Warning = 4, Notice = 5, Info = 6, Debug = 7
Log to Microsoft DebugView tool
Add custom setting, name = Log.Debugger.Level, data type = (int), value = <level of log to see>
For example to see all debug log add custom setting, Log.Debugger.Level, int, 7
Download DebugView: Microsoft DebugView
Log to Portal
Add custom setting, name = Log.Portal.Level, data type = (int), value = <level of log to see>
For example to see all debug log add custom setting, Log.Portal.Level, int, 7
Log to File
Add custom setting:
name = Log.File.Level
data type = (int)
value = <level of log to see>
For example to see all debug log add custom setting, Log.File.Level, int, 7
Also specify where the log file should be saved with this setting:
Add custom setting
name = Log.File.Filename
data type = string
value = <the path and the file name>
For example, Log.File.Filename, string, C:\logfile.txt
Today's date will automatically be added to the end of the file name and it will create a new log file every day.
If you want to add log to the DebugView, portal, and to file at the same time with the same log level you can also use setting Log.Level, int, <level of log to see>