Reduce verbosity of some debug output

This commit is contained in:
Alexander van Gessel 2012-09-14 18:24:47 +01:00
parent 359cf34ad0
commit 735390e070

View file

@ -535,8 +535,8 @@ class GitHub(object):
out += p.stdout.read()
err += p.stderr.read()
logging.debug("===== stdout ====\n\n\n%s\n\n\n===== stdout ====", out)
logging.debug("===== stderr ====\n\n\n%s\n\n\n===== stderr ====", err)
logging.debug("===== stdout ====\n%s\n===== stdout ====", out)
logging.debug("===== stderr ====\n%s\n===== stderr ====", err)
if check_error and len(err):
raise Error("Failure executing command '{0}': {1}".format(" ".join(command), err))