added missing logger statement on peer-list packet type

This commit is contained in:
Cort Buffington 2013-08-07 21:54:57 -05:00
parent d877ba90dc
commit 365f752c8e

View File

@ -418,6 +418,7 @@ class IPSC(DatagramProtocol):
logger.debug('<<- (%s) XCMP_XNL From:%s:%s, but we did not indicate XCMP capable!', self._network, host, port) logger.debug('<<- (%s) XCMP_XNL From:%s:%s, but we did not indicate XCMP capable!', self._network, host, port)
elif (_packettype == PEER_LIST_REPLY): elif (_packettype == PEER_LIST_REPLY):
logger.debug('<<- (%s) Peer List Received From:%s:%s', self._network, host, port)
self._peer_list = process_peer_list(data, self._network, self._peer_list) self._peer_list = process_peer_list(data, self._network, self._peer_list)
elif (_packettype == PVT_VOICE): elif (_packettype == PVT_VOICE):