Skip to main content
1-Visitor
August 2, 2017
Solved

How to get the default / actual logging levels for a Integrity Server?

  • August 2, 2017
  • 1 reply
  • 1733 views

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.

Best answer by MichaelChatel

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

1 reply

5-Regular Member
August 2, 2017

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

1-Visitor
August 7, 2017

Perfect,

Thanks Michael.