aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Yang <liezhi.yang@windriver.com>2018-11-14 17:46:40 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-02-25 22:19:59 +0000
commitcc32e703a8e68107353702edb230296503f5dad0 (patch)
treed137989a12eeaf6e6c784de54eb1bbd231f7b426
parent21dcec291d58ab7ac5d2c07186c68e01d85e6f65 (diff)
downloadbitbake-contrib-cc32e703a8e68107353702edb230296503f5dad0.tar.gz
server/process: print a message when no logfile
[YOCTO #12898] There might be no bitbake-cookerdaemon.log, print a message for debugging. Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/server/process.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/bb/server/process.py b/lib/bb/server/process.py
index a9302c558..8da4e718a 100644
--- a/lib/bb/server/process.py
+++ b/lib/bb/server/process.py
@@ -424,7 +424,11 @@ class BitBakeServer(object):
bb.error("Last 10 lines of server log for this session (%s):\n%s" % (logfile, "".join(lines[-10:])))
else:
bb.error("Server log for this session (%s):\n%s" % (logfile, "".join(lines)))
+ else:
+ bb.error("%s doesn't exist" % logfile)
+
raise SystemExit(1)
+
ready.close()
os.close(self.readypipein)