Browse Source

CMClient: move _LOG attr to class level

pull/219/head
Rossen Georgiev 6 years ago
parent
commit
b47f267aa1
  1. 2
      steam/core/cm.py

2
steam/core/cm.py

@ -55,6 +55,7 @@ class CMClient(EventEmitter):
EVENT_EMSG = 0 EVENT_EMSG = 0
"""All incoming messages are emitted with their :class:`.EMsg` number. """All incoming messages are emitted with their :class:`.EMsg` number.
""" """
_LOG = logging.getLogger("CMClient")
PROTOCOL_TCP = 0 #: TCP protocol enum PROTOCOL_TCP = 0 #: TCP protocol enum
PROTOCOL_UDP = 1 #: UDP protocol enum PROTOCOL_UDP = 1 #: UDP protocol enum
@ -80,7 +81,6 @@ class CMClient(EventEmitter):
_LOG = None _LOG = None
def __init__(self, protocol=PROTOCOL_TCP): def __init__(self, protocol=PROTOCOL_TCP):
self._LOG = logging.getLogger("CMClient")
self.cm_servers = CMServerList() self.cm_servers = CMServerList()
if protocol == CMClient.PROTOCOL_TCP: if protocol == CMClient.PROTOCOL_TCP:

Loading…
Cancel
Save