Removing the "logging is debug by default in dbupdate"
authorChristopher Allan Webber <cwebber@dustycloud.org>
Mon, 25 Nov 2013 15:30:59 +0000 (09:30 -0600)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Mon, 25 Nov 2013 15:31:41 +0000 (09:31 -0600)
This commit sponsored by David Neudorfer.  Thank you!

mediagoblin/gmg_commands/dbupdate.py

index e14cd550c89e8cddc00aa1e09a12d8461a383d5a..05762946c252d0a1a9e1a39b74571429c64cca7e 100644 (file)
@@ -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