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:28 +0100
commitadc49cb960075f4a29a466d7b5d28b217cf4c453 (patch)
treed9fa4531b23a2ee2c0791cb4e4544681b0fb10b4 /bitbake
parentafd213cc8e71976f2e52177927563a6868a2bed7 (diff)
downloadpoky-adc49cb960075f4a29a466d7b5d28b217cf4c453.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: 3b719e8e115b7fde869f62ddc180e045c1b51cdf) 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 13965796eb..6cdc72a85b 100644
--- a/bitbake/lib/bb/runqueue.py
+++ b/bitbake/lib/bb/runqueue.py
@@ -163,7 +163,7 @@ class RunQueueScheduler(object):
163 self.prev_pressure_time = time.time() 163 self.prev_pressure_time = time.time()
164 self.check_pressure = True 164 self.check_pressure = True
165 except: 165 except:
166 bb.warn("The /proc/pressure files can't be read. Continuing build without monitoring pressure") 166 bb.note("The /proc/pressure files can't be read. Continuing build without monitoring pressure")
167 self.check_pressure = False 167 self.check_pressure = False
168 else: 168 else:
169 self.check_pressure = False 169 self.check_pressure = False