summaryrefslogtreecommitdiffstats
path: root/bitbake
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:34 +0100
commit1fc9f7da25a810b442a2be9848b74ebfb47bafe1 (patch)
treec748f3593062eee4ad3abad83e45d1642165d016 /bitbake
parent2e193726bd14f0cb0c8ab3f489e9ec7ddb04a615 (diff)
downloadpoky-1fc9f7da25a810b442a2be9848b74ebfb47bafe1.tar.gz
bitbake: 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. (Bitbake rev: bc85c044ec250001855f2f9f0717ac031feab7c2) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/runqueue.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py
index 9b009262ef..7eea72e66d 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -180,7 +180,7 @@ class RunQueueScheduler(object):
180 self.prev_pressure_time = time.time() 180 self.prev_pressure_time = time.time()
181 self.check_pressure = True 181 self.check_pressure = True
182 except: 182 except:
183 bb.warn("The /proc/pressure files can't be read. Continuing build without monitoring pressure") 183 bb.note("The /proc/pressure files can't be read. Continuing build without monitoring pressure")
184 self.check_pressure = False 184 self.check_pressure = False
185 else: 185 else:
186 self.check_pressure = False 186 self.check_pressure = False