mirror of
https://github.com/jlu5/PyLink.git
synced 2025-01-12 05:02:33 +01:00
Irc: log socket shutdown errors to debug
This commit is contained in:
parent
f4babc6f28
commit
de67fe0d37
@ -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()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user