Skip to content

Instantly share code, notes, and snippets.

@jebai0521
Created June 13, 2015 04:02
Show Gist options
  • Save jebai0521/7ec9481f37b13875c3f5 to your computer and use it in GitHub Desktop.
Save jebai0521/7ec9481f37b13875c3f5 to your computer and use it in GitHub Desktop.
# 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