scripts: runners: esp32: remove print() call
This print() call was introduced as part of commit 16571db029
("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 <m.niestroj@emb.dev>
This commit is contained in:
parent
f735530dc8
commit
c9a3dae651
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue