1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-22 15:38:11 +00:00

core/boot: remove leftover print

This commit is contained in:
matejcik 2019-11-06 13:57:00 +01:00
parent 28d30ffd2f
commit e9fe6c2943

View File

@ -35,7 +35,8 @@ async def bootscreen() -> None:
if __debug__:
log.exception(__name__, e)
except Exception as e:
print(e)
if __debug__:
log.exception(__name__, e)
utils.halt(e.__class__.__name__)