diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-08-24 15:42:06 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-08-24 15:43:36 +0100 |
commit | 1a5c4140b0420cc70026a204fa751698fd8a8bb6 (patch) | |
tree | 2630576b0891c6df9783de65ca39db82892b2b0c /bitbake | |
parent | fc4b126856e50bceb56f1d8c828421dcd82a2105 (diff) | |
download | poky-1a5c4140b0420cc70026a204fa751698fd8a8bb6.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: 9bdedc8074990e613c9567e2cd8072f8d885f07f)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/runqueue.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/runqueue.py b/bitbake/lib/bb/runqueue.py index d0ffe3932c..48e25401ba 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 |