From b47f267aa11533b451bb251bef4e6d1d7079d44b Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Sat, 20 Jul 2019 14:41:07 +0100 Subject: [PATCH] CMClient: move _LOG attr to class level --- steam/core/cm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/steam/core/cm.py b/steam/core/cm.py index 57d0ff2..81d5ffb 100644 --- a/steam/core/cm.py +++ b/steam/core/cm.py @@ -55,6 +55,7 @@ class CMClient(EventEmitter): EVENT_EMSG = 0 """All incoming messages are emitted with their :class:`.EMsg` number. """ + _LOG = logging.getLogger("CMClient") PROTOCOL_TCP = 0 #: TCP protocol enum PROTOCOL_UDP = 1 #: UDP protocol enum @@ -80,7 +81,6 @@ class CMClient(EventEmitter): _LOG = None def __init__(self, protocol=PROTOCOL_TCP): - self._LOG = logging.getLogger("CMClient") self.cm_servers = CMServerList() if protocol == CMClient.PROTOCOL_TCP: