From 7ef61cff546cef5b0cc41456a5190723046f4b27 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Wed, 29 Jun 2016 18:24:36 +0100 Subject: [PATCH] SC: UM will log an errors properly --- steam/client/builtins/unified_messages.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/steam/client/builtins/unified_messages.py b/steam/client/builtins/unified_messages.py index 2af8196..e4ee796 100644 --- a/steam/client/builtins/unified_messages.py +++ b/steam/client/builtins/unified_messages.py @@ -63,9 +63,13 @@ class SteamUnifiedMessages(EventEmitter): proto = get_um(method_name, response=True) if proto is None: - self._LOG("Unable to find proto for %s" % repr(method_name)) + self._LOG.error("Unable to find proto for %s" % repr(method_name)) return + if message.header.eresult != EResult.OK: + self._LOG.error("%s (%s): %s" % (method_name, repr(EResult(message.header.eresult)), + message.header.error_message)) + resp = proto() resp.ParseFromString(message.body.serialized_method_response)