summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/server/process.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/bitbake/lib/bb/server/process.py b/bitbake/lib/bb/server/process.py
index 7b13576274..3c9ed70689 100644
--- a/bitbake/lib/bb/server/process.py
+++ b/bitbake/lib/bb/server/process.py
@@ -221,6 +221,7 @@ class ProcessServer(multiprocessing.Process):
221 try: 221 try:
222 print("Running command %s" % command) 222 print("Running command %s" % command)
223 self.command_channel_reply.send(self.cooker.command.runCommand(command)) 223 self.command_channel_reply.send(self.cooker.command.runCommand(command))
224 print("Command Completed")
224 except Exception as e: 225 except Exception as e:
225 logger.exception('Exception in server main event loop running command %s (%s)' % (command, str(e))) 226 logger.exception('Exception in server main event loop running command %s (%s)' % (command, str(e)))
226 227