diff mbox series

runqueue: Change pressure file warning to a note

Message ID 20220824144259.3110779-1-richard.purdie@linuxfoundation.org
State Accepted, archived
Commit 9bdedc8074990e613c9567e2cd8072f8d885f07f
Headers show
Series runqueue: Change pressure file warning to a note | expand

Commit Message

Richard Purdie Aug. 24, 2022, 2:42 p.m. UTC
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 <richard.purdie@linuxfoundation.org>
---
 lib/bb/runqueue.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/lib/bb/runqueue.py b/lib/bb/runqueue.py
index d0ffe3932c..48e25401ba 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