diff mbox series

runqemu: Stop using warn() since its been deprecated

Message ID 20230625042746.3999111-1-alejandro@enedino.org
State Accepted, archived
Commit 9263497880b3154d65ed713498749f906534a055
Headers show
Series runqemu: Stop using warn() since its been deprecated | expand

Commit Message

Alejandro Enedino Hernandez Samaniego June 25, 2023, 4:27 a.m. UTC
logger.warn() has been deprecated, logger.warning() should be used instead.

Signed-off-by: Alejandro Enedino Hernandez Samaniego <alejandro@enedino.org>
---
 scripts/runqemu | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Philippe Mathieu-Daudé June 25, 2023, 9:35 p.m. UTC | #1
On 25/6/23 06:27, Alejandro Enedino Hernandez Samaniego wrote:
> logger.warn() has been deprecated, logger.warning() should be used instead.
> 
> Signed-off-by: Alejandro Enedino Hernandez Samaniego <alejandro@enedino.org>
> ---
>   scripts/runqemu | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
diff mbox series

Patch

diff --git a/scripts/runqemu b/scripts/runqemu
index 62774a3b98..6a3fbb2d6f 100755
--- a/scripts/runqemu
+++ b/scripts/runqemu
@@ -648,10 +648,10 @@  to your build configuration.
                         elif fsflag == 'kernel-in-fs':
                             wic_fs = False
                         else:
-                            logger.warn('Unknown flag "%s:%s" in QB_FSINFO', fstype, fsflag)
+                            logger.warning('Unknown flag "%s:%s" in QB_FSINFO', fstype, fsflag)
                             continue
                     else:
-                        logger.warn('QB_FSINFO is not supported for image type "%s"', fstype)
+                        logger.warning('QB_FSINFO is not supported for image type "%s"', fstype)
                         continue
 
                     if fstype in self.fsinfo: