changeset 6062:1952682be9f8

db: increase default Alembic log level to INFO A log level of WARNING meant that Alembic was entirely silent when nothing went wrong. With INFO, Alembic actually shows what migrations it is running.
author Søren Løvborg <sorenl@unity3d.com>
date Thu, 28 Jul 2016 13:46:04 +0200
parents ab29e4c39550
children 09bcde0eee6d
files kallithea/alembic/env.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/alembic/env.py	Thu Jul 28 13:30:44 2016 +0200
+++ b/kallithea/alembic/env.py	Thu Jul 28 13:46:04 2016 +0200
@@ -36,7 +36,7 @@
 
 # Configure default logging for Alembic. (This can be overriden by the
 # config file, but usually isn't.)
-logging.getLogger('alembic').setLevel(logging.WARNING)
+logging.getLogger('alembic').setLevel(logging.INFO)
 
 # Setup Python loggers based on the config file provided to the alembic
 # command. If we're being invoked via the Alembic API (presumably for