Logging Levels
You can configure the level of detail available in 1Integrate log files. The level you assign will dictate the minimum detail level included in your Log files.
Note: Log files will be stored in the Log subdirectory of the Interface or Engine server directories.
To change the level of logging for your installation:
-
Open the settings.properties file.
-
Set
integrate.log.level=WARN
line.WARN
is the default.You can use the following options:
Logging Level
Description
DEBUG
All information and errors included, useful when debugging the application or configuration. INFO
Less granular details, but will include highlights of the application progress. WARN
Logs all unexpected application events that may cause a problem with the system. ERROR
Logs error events that may not cause immediate system failure, but could halt specific functionality. FATAL
Severe issues and errors that are likely to cause a critical application failure.
Example:
One user has configured their log level as integrate.log.level=INFO
. This means their logs will include the details from INFO
, WARN
, ERROR
and FATAL
levels.
Another user has set integrate.log.level=ERROR
. Their logs will include details from ERROR
and FATAL
levels only.