summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2018-12-04 12:54:58 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-12-05 13:11:27 +0000
commit5806b4cbd88afc6d3f30f197b978a798ba226ccc (patch)
tree873a428d2ba17965d89089b9932d25ae14937fba /bitbake
parentafe797a2773b497ec7d6af54fb81589707cb7974 (diff)
downloadpoky-5806b4cbd88afc6d3f30f197b978a798ba226ccc.tar.gz
bitbake: main: Don't use print() directly, use logger
Avoid failures like: 2018-12-04 03:30:56,033 - oe-selftest - INFO - ====================================================================== 2018-12-04 03:30:56,033 - oe-selftest - INFO - FAIL: pkgdata.OePkgdataUtilTests.test_find_path (subunit.RemotedTestCase) 2018-12-04 03:30:56,033 - oe-selftest - INFO - ---------------------------------------------------------------------- 2018-12-04 03:30:56,033 - oe-selftest - INFO - testtools.testresult.real._StringException: Traceback (most recent call last): [...] AssertionError: 'Previous bitbake instance shutting down?,[77 chars]xist' != 'ERROR: Unable to find any package produci[14 chars]xist' - Previous bitbake instance shutting down?, waiting to retry... ERROR: Unable to find any package producing path /not/exist We need to use the logger so output is correctly handled in such cases. (Bitbake rev: b5686fc07d06e1f0a55161b5ebcec6552d74ceff) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rwxr-xr-xbitbake/lib/bb/main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/main.py b/bitbake/lib/bb/main.py
index 732a315404..7dc953da66 100755
--- a/bitbake/lib/bb/main.py
+++ b/bitbake/lib/bb/main.py
@@ -448,7 +448,7 @@ def setup_bitbake(configParams, configuration, extrafeatures=None):
448 else: 448 else:
449 logger.info("Reconnecting to bitbake server...") 449 logger.info("Reconnecting to bitbake server...")
450 if not os.path.exists(sockname): 450 if not os.path.exists(sockname):
451 print("Previous bitbake instance shutting down?, waiting to retry...") 451 logger.info("Previous bitbake instance shutting down?, waiting to retry...")
452 i = 0 452 i = 0
453 lock = None 453 lock = None
454 # Wait for 5s or until we can get the lock 454 # Wait for 5s or until we can get the lock