From 7468c39039ff5fe6913cf44600e247b4f7d82c0f Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Mon, 25 Nov 2013 09:30:59 -0600 Subject: [PATCH] Removing the "logging is debug by default in dbupdate" This commit sponsored by David Neudorfer. Thank you! --- mediagoblin/gmg_commands/dbupdate.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mediagoblin/gmg_commands/dbupdate.py b/mediagoblin/gmg_commands/dbupdate.py index e14cd550..05762946 100644 --- a/mediagoblin/gmg_commands/dbupdate.py +++ b/mediagoblin/gmg_commands/dbupdate.py @@ -25,7 +25,8 @@ from mediagoblin.tools.common import import_component _log = logging.getLogger(__name__) logging.basicConfig() -_log.setLevel(logging.DEBUG) +## Let's not set the level as debug by default to avoid confusing users :) +# _log.setLevel(logging.DEBUG) def dbupdate_parse_setup(subparser): pass -- 2.25.1