Initializing loggers
Initializing loggers log information during the process initialization and also any output to standard out (stdout) of your microservice. They log the server's and given applications' information.
Main Server Initializing logger
The main server by default logs to the following path $JLUPIN_HOME/logs/server/main/main_server_initialize_X.log
, where 'X' is the ordinal in the log files group. Class loaders log information in the mentioned directory as well - this is particularly important for debugging problems with class loading.
[...]
INITIALIZING_LOGGER:
#directoryPath: '/logs/server'
fileName: 'main_server_initialize'
fileExtension: 'log'
fileSizeInMB: 10
maxFiles: 10
[...]
Microservice Initializing logger
The local server by default logs to the following paths: $JLUPIN_HOME/logs/server/$MICROSERVICE_NAME$/$MICROSERVICE_NAME$_system_out_X
, where 'X' is the ordinal in the log files group.
[...]
INITIALIZING_LOGGER:
#directoryPath: '/logs/server'
#fileName: 'file_name'
fileExtension: 'log'
fileSizeInMB: 20
maxFiles: 10
[...]