Skip to content

Instantly share code, notes, and snippets.

View edwardbadboy's full-sized avatar

Zhengsheng Zhou edwardbadboy

  • VMware
  • Beijing, China
View GitHub Profile
@manfre
manfre / log_settings.py
Created October 5, 2011 13:32
Django logging filter to throttle repeated messages
# Example logging configuration that will restrict console logging to
# at most 2 repeated messages per 30 seconds.
LOGGING = {
'version': 1,
'disable_existing_loggers': True,
'formatters': {
'simple': {
'format': '%(asctime)s - %(name)s - %(levelname)s - %(filename)s:%(lineno)d - %(message)s'
},
},