1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-15 10:58:09 +00:00

print message size in _pprint

This commit is contained in:
Pavol Rusnak 2014-02-03 17:37:39 +01:00
parent c9a348d4a9
commit d629a76689

3
trezorlib/client.py Executable file → Normal file
View File

@ -135,7 +135,8 @@ class TrezorClient(object):
return ret
def _pprint(self, msg):
return "<%s>:\n%s" % (msg.__class__.__name__, msg)
ser = msg.SerializeToString()
return "<%s> (%d bytes):\n%s" % (msg.__class__.__name__, len(ser), msg)
def setup_debuglink(self, button=None, pin_correct=False):
self.debug_button = button