You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aurora.apache.org by wi...@apache.org on 2014/01/28 00:13:49 UTC

git commit: Quiet noisy status checker debug messages

Updated Branches:
  refs/heads/master 4efa6748c -> 3e59dfb19


Quiet noisy status checker debug messages

Fix noisy status checker debug log.

Bugs closed: AURORA-56

Reviewed at https://reviews.apache.org/r/17412/


Project: http://git-wip-us.apache.org/repos/asf/incubator-aurora/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-aurora/commit/3e59dfb1
Tree: http://git-wip-us.apache.org/repos/asf/incubator-aurora/tree/3e59dfb1
Diff: http://git-wip-us.apache.org/repos/asf/incubator-aurora/diff/3e59dfb1

Branch: refs/heads/master
Commit: 3e59dfb19c738bc50f73ccb0cf768ab36dddee29
Parents: 4efa674
Author: Brian Wickman <wi...@twopensource.com>
Authored: Mon Jan 27 15:13:23 2014 -0800
Committer: Brian Wickman <wi...@twitter.com>
Committed: Mon Jan 27 15:13:23 2014 -0800

----------------------------------------------------------------------
 src/main/python/apache/aurora/executor/common/status_checker.py | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/3e59dfb1/src/main/python/apache/aurora/executor/common/status_checker.py
----------------------------------------------------------------------
diff --git a/src/main/python/apache/aurora/executor/common/status_checker.py b/src/main/python/apache/aurora/executor/common/status_checker.py
index 48e7a44..f94042c 100644
--- a/src/main/python/apache/aurora/executor/common/status_checker.py
+++ b/src/main/python/apache/aurora/executor/common/status_checker.py
@@ -107,7 +107,6 @@ class ChainedStatusChecker(StatusChecker):
   def status(self):
     if self._status is None:
       for status_checker in self._status_checkers:
-        log.debug('Checking status from %s' % status_checker.__class__.__name__)
         status_checker_status = status_checker.status
         if status_checker_status is not None:
           log.info('%s reported %s' % (status_checker.__class__.__name__, status_checker_status))