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:
Marcin Niestroj 2022-01-05 23:06:37 +01:00 committed by Anas Nashif
parent f735530dc8
commit c9a3dae651
1 changed files with 0 additions and 1 deletions

View File

@ -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)