Created
June 13, 2015 04:02
-
-
Save jebai0521/7ec9481f37b13875c3f5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# LOGGING = { | |
# 'version': 1, | |
# 'disable_existing_loggers': True, | |
# 'formatters': { | |
# 'standard': { | |
# 'format': '%(asctime)s [%(threadName)s:%(thread)d] [%(name)s:%(lineno)d] [%(levelname)s]- %(message)s' | |
# }, | |
# }, | |
# 'filters': { | |
# }, | |
# 'handlers': { | |
# 'mail_admins': { | |
# 'level': 'ERROR', | |
# 'class': 'django.utils.log.AdminEmailHandler', | |
# 'include_html': True, | |
# }, | |
# 'default': { | |
# 'level':'DEBUG', | |
# 'class':'logging.handlers.RotatingFileHandler', | |
# 'filename': os.path.join(STATIC_ROOT+'/logs/','all.log'), | |
# 'maxBytes': 1024*1024*5, # 5 MB | |
# 'backupCount': 5, | |
# 'formatter':'standard', | |
# }, | |
# 'console':{ | |
# 'level': 'DEBUG', | |
# 'class': 'logging.StreamHandler', | |
# 'formatter': 'standard' | |
# }, | |
# 'request_handler': { | |
# 'level':'DEBUG', | |
# 'class':'logging.handlers.RotatingFileHandler', | |
# 'filename': os.path.join(STATIC_ROOT+'/logs/','script.log'), | |
# 'maxBytes': 1024*1024*5, # 5 MB | |
# 'backupCount': 5, | |
# 'formatter':'standard', | |
# }, | |
# 'scprits_handler': { | |
# 'level':'DEBUG', | |
# 'class':'logging.handlers.RotatingFileHandler', | |
# 'filename': os.path.join(STATIC_ROOT+'/logs/','script.log'), | |
# 'maxBytes': 1024*1024*5, # 5 MB | |
# 'backupCount': 5, | |
# 'formatter':'standard', | |
# }, | |
# }, | |
# 'loggers': { | |
# 'django': { | |
# 'handlers': ['default','console'], | |
# 'level': 'DEBUG', | |
# 'propagate': False | |
# }, | |
# 'XieYin.app':{ | |
# 'handlers': ['default','console'], | |
# 'level': 'DEBUG', | |
# 'propagate': True | |
# }, | |
# 'django.request': { | |
# 'handlers': ['request_handler'], | |
# 'level': 'DEBUG', | |
# 'propagate': False | |
# }, | |
# 'scripts': { # 脚本专用日志 | |
# 'handlers': ['scprits_handler'], | |
# 'level': 'INFO', | |
# 'propagate': False | |
# }, | |
# } | |
# } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment