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: http://test.kernel.org/svn/autotest/trunk@2657 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/frontend/afe/models.py b/frontend/afe/models.py
index 29da5e4..66c68d9 100644
--- a/frontend/afe/models.py
+++ b/frontend/afe/models.py
@@ -226,7 +226,7 @@
 
     def on_attribute_changed(self, attribute, old_value):
         assert attribute == 'status'
-        logger.debug(self.hostname + ' -> ' + self.status)
+        logger.info(self.hostname + ' -> ' + self.status)
 
 
     def enqueue_job(self, job):
@@ -749,7 +749,7 @@
 
     def on_attribute_changed(self, attribute, old_value):
         assert attribute == 'status'
-        logger.debug('%s/%d (%d) -> %s' % (self.host, self.job.id, self.id,
+        logger.info('%s/%d (%d) -> %s' % (self.host, self.job.id, self.id,
                                            self.status))