Log alembic migrations by default

Update the default server logging config to log alembic migration
info.  Sometimes these can take a while, and the admin would like
to know what's up.

Change-Id: Ic7f87ea571ed2d4bdf84ef146e19fc2671e7cdc0
This commit is contained in:
James E. Blair 2020-04-20 07:54:24 -07:00
parent f5368eb4a4
commit 9a26197834
1 changed files with 4 additions and 0 deletions

View File

@ -106,6 +106,10 @@ _DEFAULT_SERVER_LOGGING_CONFIG = {
'handlers': ['console'],
'level': 'WARN',
},
'alembic.runtime.migration': {
'handlers': ['console'],
'level': 'INFO',
},
'alembic': {
'handlers': ['console'],
'level': 'WARN',