From adc49cb960075f4a29a466d7b5d28b217cf4c453 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Wed, 24 Aug 2022 15:42:06 +0100 Subject: bitbake: runqueue: Change pressure file warning to a note The user does need to be told about this but it isn't really a warning, just something they may need to be aware of. Drop the level accordingly. (Bitbake rev: 3b719e8e115b7fde869f62ddc180e045c1b51cdf) Signed-off-by: Richard Purdie --- bitbake/lib/bb/runqueue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index 13965796eb..6cdc72a85b 100644 --- a/bitbake/lib/bb/runqueue.py +++ b/bitbake/lib/bb/runqueue.py @@ -163,7 +163,7 @@ class RunQueueScheduler(object): self.prev_pressure_time = time.time() self.check_pressure = True except: - bb.warn("The /proc/pressure files can't be read. Continuing build without monitoring pressure") + bb.note("The /proc/pressure files can't be read. Continuing build without monitoring pressure") self.check_pressure = False else: self.check_pressure = False -- cgit v1.2.3-54-g00ecf