Community Tip - You can subscribe to a forum, label or individual post and receive email notifications when someone posts a new topic or reply. Learn more! X
Hello all.
How can I:
- Get the default logging levels from the Integrity Server? (Wich will be set when the Integrity Server Start/Restart)
- Get the actual logging levels from the Integrity Server? (Some one changed it after Integrity Server Started/Restarted)
Thanks.
Solved! Go to Solution.
The server's logger.properties file shows what logging categories are set, that will take affect when the server is started/restarted.
If you look at that file, some of the categories are commented out, but show the default values if you were to activate them (uncomment them).
To know what the current logging categories are set to, while the server is running (perhaps someone changed them on the fly), you can use this diag command:
im diag --diag=loginfo
The server's logger.properties file shows what logging categories are set, that will take affect when the server is started/restarted.
If you look at that file, some of the categories are commented out, but show the default values if you were to activate them (uncomment them).
To know what the current logging categories are set to, while the server is running (perhaps someone changed them on the fly), you can use this diag command:
im diag --diag=loginfo
Perfect,
Thanks Michael.