From c9a3dae6519fc788d33233fc1c4d1364ba129034 Mon Sep 17 00:00:00 2001 From: Marcin Niestroj Date: Wed, 5 Jan 2022 23:06:37 +0100 Subject: [PATCH] scripts: runners: esp32: remove print() call This print() call was introduced as part of commit 16571db029ed ("soc: esp32: add support to mcuboot build") probably as a leftover from debugging stage. Remove that, so flash command is not printed by default. Those commmands can be easily printed by passing -v flag to `west -v flash ...` command. Signed-off-by: Marcin Niestroj --- scripts/west_commands/runners/esp32.py | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/west_commands/runners/esp32.py b/scripts/west_commands/runners/esp32.py index 22e1359a935..e2f7a3c3c7e 100644 --- a/scripts/west_commands/runners/esp32.py +++ b/scripts/west_commands/runners/esp32.py @@ -116,5 +116,4 @@ class Esp32BinaryRunner(ZephyrBinaryRunner): self.logger.info("Flashing esp32 chip on {} ({}bps)". format(self.device, self.baud)) - print(cmd_flash) self.check_call(cmd_flash)