summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2022-08-24 15:42:06 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-08-24 15:42:17 +0100
commit9bdedc8074990e613c9567e2cd8072f8d885f07f (patch)
tree2e713f69ff2288f1a430271f94688ee93acbbd23
parentf33ce7e742f46635658c400b82558cf822690b5e (diff)
downloadbitbake-9bdedc8074990e613c9567e2cd8072f8d885f07f.tar.gz
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 <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/runqueue.py2
1 files changed, 1 insertions, 1 deletions
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