[Xfce4-commits] <xfce-git-hooks:master> Disable debug output in the buildbot hook.
Jannis Pohlmann
jannis at xfce.org
Thu Sep 17 02:44:01 CEST 2009
Updating branch refs/heads/master
to 358e138eda1e82a4c9741c9e2d1c98f84e189619 (commit)
from 8cc0d1cd2058db5af32a8d3a2318177a508df71b (commit)
commit 358e138eda1e82a4c9741c9e2d1c98f84e189619
Author: Jannis Pohlmann <jannis at xfce.org>
Date: Thu Sep 17 02:41:55 2009 +0200
Disable debug output in the buildbot hook.
hooks/git_buildbot.py | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/hooks/git_buildbot.py b/hooks/git_buildbot.py
index b7eee42..37de5f9 100755
--- a/hooks/git_buildbot.py
+++ b/hooks/git_buildbot.py
@@ -278,10 +278,10 @@ def parse_options():
# information to a file as well (we'll set that up later.)
stderr = logging.StreamHandler(sys.stderr)
fmt = logging.Formatter("git_buildbot: %(levelname)s: %(message)s")
-stderr.setLevel(logging.DEBUG)
+stderr.setLevel(logging.ERROR)
stderr.setFormatter(fmt)
logging.getLogger().addHandler(stderr)
-logging.getLogger().setLevel(logging.DEBUG)
+logging.getLogger().setLevel(logging.INFO)
try:
options = parse_options()
More information about the Xfce4-commits
mailing list