aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2013-11-25 09:30:59 -0600
committerChristopher Allan Webber <cwebber@dustycloud.org>2013-11-25 09:31:41 -0600
commit7468c39039ff5fe6913cf44600e247b4f7d82c0f (patch)
treee38f7c5d7ec42a18b28b9cccb5008987411c934f
parent11eb6a8b53ed2e1f9c1e1e1c5feec0902519ca18 (diff)
downloadmediagoblin-7468c39039ff5fe6913cf44600e247b4f7d82c0f.tar.lz
mediagoblin-7468c39039ff5fe6913cf44600e247b4f7d82c0f.tar.xz
mediagoblin-7468c39039ff5fe6913cf44600e247b4f7d82c0f.zip
Removing the "logging is debug by default in dbupdate"
This commit sponsored by David Neudorfer. Thank you!
-rw-r--r--mediagoblin/gmg_commands/dbupdate.py3
1 files changed, 2 insertions, 1 deletions
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