From d221e59a5067266c3f620259a1e56a56823df1fb Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Fri, 30 Jun 2023 18:04:11 +0100 Subject: bitbake: cooker: Log when parsing starts in server log It is unclear from the server logs when parsing starts. We know that timeouts sometimes happen when parsing but it is unclear where in the code the delays are from. Adding this debug message to the server log should help narrow that down. (Bitbake rev: a5c145f436d68f090b113cfb9b82857adc95b546) Signed-off-by: Richard Purdie --- bitbake/lib/bb/cooker.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index 0a21f1c2f8..11c9fa2c40 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py @@ -1666,6 +1666,7 @@ class BBCooker: self.updateCacheSync() if self.state != state.parsing and not self.parsecache_valid: + bb.server.process.serverlog("Parsing started") self.setupParserWatcher() bb.parse.siggen.reset(self.data) -- cgit v1.2.3-54-g00ecf