Skip to content

Commit

Permalink
[Closes #3935] celery.log file based handler causing issues if not co…
Browse files Browse the repository at this point in the history
…rrectly configured
  • Loading branch information
afabiani committed Sep 25, 2018
1 parent 178344e commit 683c1a3
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions geonode/local_settings.py.geoserver.sample
Original file line number Diff line number Diff line change
Expand Up @@ -463,13 +463,6 @@ LOGGING = {
'class': 'logging.StreamHandler',
'formatter': 'simple'
},
'celery': {
'level': 'ERROR',
'class': 'logging.handlers.RotatingFileHandler',
'filename': 'celery.log',
'formatter': 'simple',
'maxBytes': 1024 * 1024 * 10, # 10 mb
},
'mail_admins': {
'level': 'ERROR',
'filters': ['require_debug_false'],
Expand All @@ -490,7 +483,7 @@ LOGGING = {
"pycsw": {
"handlers": ["console"], "level": "INFO", },
"celery": {
'handlers': ['celery', 'console'], 'level': 'ERROR', },
'handlers': ["console"], 'level': 'ERROR', },
},
}

Expand Down

0 comments on commit 683c1a3

Please sign in to comment.