summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2011-01-22 13:42:19 +0100
committerGuido Günther <agx@sigxcpu.org>2011-01-22 13:42:19 +0100
commite1661bd8288924f532c67c282d5d728042c65c44 (patch)
treed15301b3e28c0adc09fa8934b32872ad3d1a267e
parentd8d2347bdd45074f8f194265d948b50108d22051 (diff)
git-buildpackage: print the "Looking for tarball..." message at debug level
There's no need to print two messages in the default logging level.
-rwxr-xr-xgit-buildpackage2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-buildpackage b/git-buildpackage
index f26dfd96..8e8af02b 100755
--- a/git-buildpackage
+++ b/git-buildpackage
@@ -359,7 +359,7 @@ def main(argv):
# look in tarball_dir first, if found force a symlink to it
if options.tarball_dir:
- gbp.log.info("Looking for orig tarball '%s' at '%s'" % (orig_file, tarball_dir))
+ gbp.log.debug("Looking for orig tarball '%s' at '%s'" % (orig_file, tarball_dir))
if not du.symlink_orig(cp, options.comp_type, tarball_dir, output_dir, force=True):
gbp.log.info("Orig tarball '%s' not found at '%s'" % (orig_file, tarball_dir))
else: