########################################## # 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 [logger_access] handlers=access qualname=access # The logrotation limit is set at 5MB per file for a total of 5 copies. # I.e. 25MB for each set of logs. [handler_access] class=handlers.RotatingFileHandler level=DEBUG propagate=True formatter=access args=('%LOG_DIR%/access.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 [handlers] keys=logfile,access [formatters] keys=default,access