From 9bdedc8074990e613c9567e2cd8072f8d885f07f Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Wed, 24 Aug 2022 15:42:06 +0100 Subject: 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. Signed-off-by: Richard Purdie --- lib/bb/runqueue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py index d0ffe3932..48e25401b 100644 --- a/lib/bb/runqueue.py +++ b/lib/bb/runqueue.py @@ -180,7 +180,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 1.2.3-korg