diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-09 14:01:12 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-11 10:34:30 +0100 |
commit | 654eadfa30624c62018665da618287b6cb5c7e3c (patch) | |
tree | ddca0b2edbf92abfd7e7f6e9cd9c3499d704ea45 /bitbake/lib/bb/ui/knotty.py | |
parent | 5052bf92e40d8e0764a11e897f06d3d9c7c065e9 (diff) | |
download | poky-654eadfa30624c62018665da618287b6cb5c7e3c.tar.gz |
bitbake: bitbake: Update logger.warn() -> logger.warning()
python deprecated logger.warn() in favour of logger.warning(). This is only
used in bitbake code so we may as well just translate everything to avoid
warnings under python 3. Its safe for python 2.7.
(Bitbake rev: 676a5f592e8507e81b8f748d58acfea7572f8796)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/ui/knotty.py')
-rw-r--r-- | bitbake/lib/bb/ui/knotty.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/bitbake/lib/bb/ui/knotty.py b/bitbake/lib/bb/ui/knotty.py index 268562770a..903d72b565 100644 --- a/bitbake/lib/bb/ui/knotty.py +++ b/bitbake/lib/bb/ui/knotty.py | |||
@@ -350,7 +350,7 @@ def main(server, eventHandler, params, tf = TerminalFilter): | |||
350 | tries -= 1 | 350 | tries -= 1 |
351 | if tries: | 351 | if tries: |
352 | continue | 352 | continue |
353 | logger.warn(event.msg) | 353 | logger.warning(event.msg) |
354 | continue | 354 | continue |
355 | 355 | ||
356 | if isinstance(event, logging.LogRecord): | 356 | if isinstance(event, logging.LogRecord): |
@@ -377,7 +377,7 @@ def main(server, eventHandler, params, tf = TerminalFilter): | |||
377 | continue | 377 | continue |
378 | 378 | ||
379 | if isinstance(event, bb.build.TaskFailedSilent): | 379 | if isinstance(event, bb.build.TaskFailedSilent): |
380 | logger.warn("Logfile for failed setscene task is %s" % event.logfile) | 380 | logger.warning("Logfile for failed setscene task is %s" % event.logfile) |
381 | continue | 381 | continue |
382 | if isinstance(event, bb.build.TaskFailed): | 382 | if isinstance(event, bb.build.TaskFailed): |
383 | return_value = 1 | 383 | return_value = 1 |
@@ -509,8 +509,8 @@ def main(server, eventHandler, params, tf = TerminalFilter): | |||
509 | continue | 509 | continue |
510 | 510 | ||
511 | if isinstance(event, bb.runqueue.sceneQueueTaskFailed): | 511 | if isinstance(event, bb.runqueue.sceneQueueTaskFailed): |
512 | logger.warn("Setscene task %s (%s) failed with exit code '%s' - real task will be run instead", | 512 | logger.warning("Setscene task %s (%s) failed with exit code '%s' - real task will be run instead", |
513 | event.taskid, event.taskstring, event.exitcode) | 513 | event.taskid, event.taskstring, event.exitcode) |
514 | continue | 514 | continue |
515 | 515 | ||
516 | if isinstance(event, bb.event.DepTreeGenerated): | 516 | if isinstance(event, bb.event.DepTreeGenerated): |