| Log |
Static class that contains the functionality in order to
maintain and organize a log file with the same records format
The log behavior is affected by the following system properties
hcfj_log_path: work directory of the log, by default app work directory
hcfj_log_initial_queue_size: initial size of the internal queue, by default 10000;
hcfj_log_file_prefix: all the log files start with this prefix, by default hcjf
hcfj_log_error_file: if the property is true then log create a particular file for error group only, by default false
hcfj_log_warning_file: if the property is true then log create a particular file for warning group only, by default false
hcfj_log_info_file: if the property is true then log create a particular file for info group only, by default false
hcfj_log_debug_file: if the property is true then log create a particular file for debug group only, by default false
hcfj_log_level: min level to write file, by default "I"
hcfj_log_date_format: date format to show in the log file, by default "yyyy-mm-dd hh:mm:ss"
|