From ec166484a2b2a15d0855ca152a019a64357d631d Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Mon, 10 Mar 2025 14:53:47 +0000 Subject: bitbake: cooker: Add debug for parsing being complete We have a "parsing started" event in the cooker deamon log but we don't currently log the corresponding "parsing complete" event which is confusing. Add this so that the logs are more logical. (Bitbake rev: 1aa491c1f1211bf9faab712c321b66629fb7be66) Signed-off-by: Richard Purdie --- bitbake/lib/bb/cooker.py | 1 + 1 file changed, 1 insertion(+) (limited to 'bitbake') diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index e21815daad..1810bcc604 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py @@ -1636,6 +1636,7 @@ You can also remove the BB_HASHSERVE_UPSTREAM setting, but this may result in si self.state = State.PARSING if not self.parser.parse_next(): + bb.server.process.serverlog("Parsing completed") collectlog.debug("parsing complete") if self.parser.error: raise bb.BBHandledException() -- cgit v1.2.3-54-g00ecf