| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- ##########################################
- # To change the log leve, edit the `level' field.
- # Choices are: DEBUG, INFO, WARNING, ERROR, CRITICAL
- #
- # The logrotation limit is set at 5MB per file for a total of 5 copies.
- # I.e. 25MB for each set of logs.
- ##########################################
- [handler_logfile]
- level=INFO
- class=handlers.RotatingFileHandler
- formatter=default
- args=('%LOG_DIR%/%PROC_NAME%.log', 'a', 5000000, 5)
- ##########################################
- # Please do not change the settings below
- ##########################################
- [logger_root]
- handlers=logfile,errorlog
- [logger_access]
- handlers=accesslog
- qualname=access
- [logger_shell_output]
- handlers=shell_output_log
- qualname=shell_output
- [logger_shell_input]
- handlers=shell_input_log
- qualname=shell_input
- # The logrotation limit is set at 5MB per file for a total of 5 copies.
- # I.e. 25MB for each set of logs.
- [handler_accesslog]
- class=handlers.RotatingFileHandler
- level=DEBUG
- propagate=True
- formatter=access
- args=('%LOG_DIR%/access.log', 'a', 5000000, 5)
- # All errors go into error.log
- [handler_errorlog]
- class=handlers.RotatingFileHandler
- level=ERROR
- formatter=default
- args=('%LOG_DIR%/error.log', 'a', 5000000, 5)
- [handler_shell_output_log]
- class=handlers.RotatingFileHandler
- level=INFO
- formatter=default
- args=('%LOG_DIR%/shell_output.log', 'a', 5000000, 5)
- [handler_shell_input_log]
- class=handlers.RotatingFileHandler
- level=INFO
- formatter=default
- args=('%LOG_DIR%/shell_input.log', 'a', 5000000, 5)
- [formatter_default]
- format=[%(asctime)s] %(module)-12s %(levelname)-8s %(message)s
- datefmt=%d/%b/%Y %H:%M:%S +0000
- [formatter_access]
- format=[%(asctime)s] %(levelname)-8s %(message)s
- datefmt=%d/%b/%Y %H:%M:%S +0000
- [loggers]
- keys=root,access,shell_output,shell_input
- [handlers]
- keys=logfile,accesslog,errorlog,shell_output_log,shell_input_log
- [formatters]
- keys=default,access
|