diff --git a/steam/core/cm.py b/steam/core/cm.py index 0e9886c..f417acb 100644 --- a/steam/core/cm.py +++ b/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()