# LOGGING SETTINGS
Read Time: 1 minute(s)
# Description
The logging setting wraps the current mechanism and simply sets the appropriate environment for jBASE.
Setting | Description |
---|---|
logging_enabled | Enable error logging (JBASE_ERRMSG_TRACE). |
enhanced_logging | Default legacy jBASE logging use [0], new version added in 5.6.0.1 use [1], [emu log_runtime_errors] (JBASE_EMU_ENHANCED_LOGGING). |
location_jbase_error_message_file | Hash file that holds error codes and messages (JBCERRFILE). |
log_deffinition_file | Text file used to recreate the jBASE error message file (JBASE_ENV_LOG_DEFINITION_FILE). |
error_redirected | Set to 1 to redirect standard error to standard out. Useful for capturing output that would normally be sent to the screen (JBC_STDERR). |
"logging": {
"logging_enabled": true,
"enhanced_logging": false,
"location_jbase_error_message_file": "%JBCRELEASEDIR%\\jbcmessages",
"log_deffinition_file": "%JBCRELEASEDIR%\\jbcinit.err",
"error_redirected": "false"
}
1
2
3
4
5
6
7
2
3
4
5
6
7
Back to Profiles