From ef21d084241ef2f7d3816338b74202044ce78d4d Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Sat, 5 Sep 2020 11:43:06 +0100 Subject: bitbake: server/process: Note when commands complete in logs Its hard to tell from the server logs whether commands complete or not (or how long they take). Add extra info to allow more debugging of server timeouts. (Bitbake rev: 56285ada585ec1481449522282b335bcb5a2671e) Signed-off-by: Richard Purdie --- bitbake/lib/bb/server/process.py | 1 + 1 file changed, 1 insertion(+) (limited to 'bitbake/lib/bb/server') diff --git a/bitbake/lib/bb/server/process.py b/bitbake/lib/bb/server/process.py index 21f95cb61e..c7cb34f0cc 100644 --- a/bitbake/lib/bb/server/process.py +++ b/bitbake/lib/bb/server/process.py @@ -215,6 +215,7 @@ class ProcessServer(): try: serverlog("Running command %s" % command) self.command_channel_reply.send(self.cooker.command.runCommand(command)) + serverlog("Command Completed") except Exception as e: logger.exception('Exception in server main event loop running command %s (%s)' % (command, str(e))) -- cgit v1.2.3-54-g00ecf