Commit 900e794c by Ned Batchelder

Only quiet the particular logger we think is too noisy.

parent 3d67c506
......@@ -47,7 +47,7 @@ class Command(NoArgsCommand):
def handle_noargs(self, **options):
# We don't want to see the SQL output from the db layer.
logging.getLogger("").setLevel(logging.INFO)
logging.getLogger("django.db.backends").setLevel(logging.INFO)
smhc = StudentModuleHistoryCleaner(
dry_run=options["dry_run"],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment