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:43:16 +0100
commitbc85c044ec250001855f2f9f0717ac031feab7c2 (patch)
tree6958db690bd4d8b9742a3f184f92a87b2caa5323
parent4ada86cb6b05e6e3aabc8015a6e73aacb14a3388 (diff)
downloadbitbake-bc85c044ec250001855f2f9f0717ac031feab7c2.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 9b009262e..7eea72e66 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