diff --git a/steam/__init__.py b/steam/__init__.py index ba815a1..4075f1b 100644 --- a/steam/__init__.py +++ b/steam/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.0.0-alpha5" +__version__ = "1.0.0-alpha6" __author__ = "Rossen Georgiev" -version_info = (1, 0, 0, 'alpha', 5) +version_info = (1, 0, 0, 'alpha', 6) diff --git a/steam/core/cm.py b/steam/core/cm.py index 81d5ffb..83cfb22 100644 --- a/steam/core/cm.py +++ b/steam/core/cm.py @@ -55,7 +55,6 @@ 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 @@ -78,7 +77,7 @@ class CMClient(EventEmitter): _recv_loop = None _heartbeat_loop = None - _LOG = None + _LOG = logging.getLogger("CMClient") def __init__(self, protocol=PROTOCOL_TCP): self.cm_servers = CMServerList()