aboutsummaryrefslogtreecommitdiffstats
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:43:20 +0100
commit3b719e8e115b7fde869f62ddc180e045c1b51cdf (patch)
tree256c4eb9cef9b717a322eeb4acbcdc446e387404
parent82b683f8c7a559f4fcab68f6a0fa7dc3dc20fa05 (diff)
downloadbitbake-contrib-3b719e8e115b7fde869f62ddc180e045c1b51cdf.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 13965796e..6cdc72a85 100644
--- a/lib/bb/runqueue.py
+++ b/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