Skip to content

Commit

Permalink
disable debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
markdoub committed Apr 26, 2016
1 parent bd4d537 commit 24b50ae
Showing 1 changed file with 31 additions and 31 deletions.
62 changes: 31 additions & 31 deletions talks/settings_docker.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,37 +13,37 @@

RAVEN_CONFIG = {}

LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'formatters': {
'verbose': {
'format': '%(levelname)s %(asctime)s %(module)s %(process)d %(thread)d %(message)s'
},
'simple': {
'format': '%(levelname)s %(message)s'
},
},
'handlers': {
'console': {
'level': 'DEBUG',
'class': 'logging.StreamHandler',
'formatter': 'simple'
},
},
'loggers': {
'': {
'handlers': ['console'],
'level': 'DEBUG',
'propagate': True,
},
'root': {
'handlers': ['console'],
'level': 'DEBUG',
'propagate': True,
},
}
}
# LOGGING = {
# 'version': 1,
# 'disable_existing_loggers': False,
# 'formatters': {
# 'verbose': {
# 'format': '%(levelname)s %(asctime)s %(module)s %(process)d %(thread)d %(message)s'
# },
# 'simple': {
# 'format': '%(levelname)s %(message)s'
# },
# },
# 'handlers': {
# 'console': {
# 'level': 'DEBUG',
# 'class': 'logging.StreamHandler',
# 'formatter': 'simple'
# },
# },
# 'loggers': {
# '': {
# 'handlers': ['console'],
# 'level': 'DEBUG',
# 'propagate': True,
# },
# 'root': {
# 'handlers': ['console'],
# 'level': 'DEBUG',
# 'propagate': True,
# },
# }
# }

HAYSTACK_CONNECTIONS = {
'default': {
Expand Down

0 comments on commit 24b50ae

Please sign in to comment.