Browse Source

reworked debug message in multi message

pull/34/head
Rossen Georgiev 9 years ago
parent
commit
a327e853d0
  1. 7
      steam/core/cm.py

7
steam/core/cm.py

@ -293,10 +293,13 @@ class CMClient(EventEmitter):
self.emit('channel_secured')
def __handle_multi(self, msg):
self._LOG.debug("Unpacking CMsgMulti")
self._LOG.debug("Multi: Unpacking")
if msg.body.size_unzipped:
self._LOG.debug("Unzipping body")
self._LOG.debug("Multi: Decompressing payload (%d -> %s)" % (
len(msg.body.message_body),
msg.body.size_unzipped,
))
with GzipFile(fileobj=BytesIO(msg.body.message_body)) as f:
data = f.read()

Loading…
Cancel
Save