There are event logs, however this application only creates a log when an error occurs. In addition to the error, the application saves the 20debug/info/warning messages prior to the error. This helps identify the context to the event in question and aids in troubleshooting.
There 4 kinds of logs messages:
The stack of write priorities is next (from top to down):
Debug
Info
Warn
Error
if I set ‘debug’ – it will also write Info/warn/error
if I set ‘info’ – it will also write warn/error
if I set ‘warn’ – it will also write error
if I set ‘error’ – it will write error (+ 20 last debug/info/warn messages)
Danielle Logan