summaryrefslogtreecommitdiff
path: root/scheduler
diff options
context:
space:
mode:
authorshoward <showard@592f7852-d20e-0410-864c-8624ca9c26a4>2009-01-16 03:07:38 +0000
committershoward <showard@592f7852-d20e-0410-864c-8624ca9c26a4>2009-01-16 03:07:38 +0000
commit236d5b605f703186c96270cda4493f224cec24c4 (patch)
tree8b26ee1f77e46b5baccb278063f0b3ef6bb36380 /scheduler
parentdc74977d6b413cf1f968751c992571a181fda990 (diff)
Make sure the debug messages from models get printed while the scheduler is running. The log level got changed during the scalability work and this was disabling output of these important status change messages,
Signed-off-by: Steve Howard <showard@google.com> git-svn-id: svn://test.kernel.org/autotest/trunk@2657 592f7852-d20e-0410-864c-8624ca9c26a4
Diffstat (limited to 'scheduler')
-rw-r--r--scheduler/monitor_db.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scheduler/monitor_db.py b/scheduler/monitor_db.py
index 5665bf2c..0cc443b3 100644
--- a/scheduler/monitor_db.py
+++ b/scheduler/monitor_db.py
@@ -142,7 +142,7 @@ def init(logfile):
setup_django_environment.enable_autocommit()
debug.configure('scheduler', format_string='%(message)s')
- debug.get_logger().setLevel(logging.WARNING)
+ debug.get_logger().setLevel(logging.INFO)
print "Setting signal handler"
signal.signal(signal.SIGINT, handle_sigint)