Skip to content

Commit

Permalink
Merge pull request #213 from SubstraFoundation/celery-log-entries
Browse files Browse the repository at this point in the history
Don't swallow celery logs
  • Loading branch information
Kelvin-M authored Apr 14, 2020
2 parents 57fbd11 + 31c49d1 commit 4a03486
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/backend/settings/dev.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
'celery': {
'level': 'INFO',
'handlers': ['console'],
'propagate': False,
'propagate': True, # without this, celery logs aren't displayed at all
},
}
}
2 changes: 1 addition & 1 deletion backend/backend/settings/prod.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
'celery': {
'level': 'INFO',
'handlers': ['console'],
'propagate': False,
'propagate': True, # without this, celery logs aren't displayed at all
},
},
}

0 comments on commit 4a03486

Please sign in to comment.