3
0
mirror of https://github.com/jlu5/PyLink.git synced 2025-01-12 13:12:36 +01:00

Irc: log socket shutdown errors to debug

This commit is contained in:
James Lu 2017-05-07 13:46:15 -07:00
parent f4babc6f28
commit de67fe0d37

View File

@ -386,8 +386,8 @@ class Irc(utils.DeprecatedAttributesObject):
try:
log.debug('(%s) disconnect: Shutting down socket.', self.name)
self.socket.shutdown(socket.SHUT_WR)
except: # Socket timed out during creation; ignore
pass
except Exception as e: # Socket timed out during creation; ignore
log.debug('(%s) error on socket shutdown: %s: %s', self.name, type(e).__name__, e)
self.socket.close()