summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/siggen.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/siggen.py b/bitbake/lib/bb/siggen.py
index 26e0243b00..c4ff9d8de1 100644
--- a/bitbake/lib/bb/siggen.py
+++ b/bitbake/lib/bb/siggen.py
@@ -598,7 +598,7 @@ class SignatureGeneratorUniHashMixIn(object):
598 # A unique hash equal to the taskhash is not very interesting, 598 # A unique hash equal to the taskhash is not very interesting,
599 # so it is reported it at debug level 2. If they differ, that 599 # so it is reported it at debug level 2. If they differ, that
600 # is much more interesting, so it is reported at debug level 1 600 # is much more interesting, so it is reported at debug level 1
601 hashequiv_logger.debug((1, 2)[unihash == taskhash], 'Found unihash %s in place of %s for %s from %s' % (unihash, taskhash, tid, self.server)) 601 hashequiv_logger.bbdebug((1, 2)[unihash == taskhash], 'Found unihash %s in place of %s for %s from %s' % (unihash, taskhash, tid, self.server))
602 else: 602 else:
603 hashequiv_logger.debug2('No reported unihash for %s:%s from %s' % (tid, taskhash, self.server)) 603 hashequiv_logger.debug2('No reported unihash for %s:%s from %s' % (tid, taskhash, self.server))
604 except ConnectionError as e: 604 except ConnectionError as e: