Skip to content

Commit

Permalink
Decrease log level for TCP timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
mirceaulinic committed Nov 12, 2020
1 parent 5956b2e commit 06bdc67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion napalm_logs/listener/tcp.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def _client_connection(self, conn, addr):
except socket.timeout:
if not self.__up:
return
log.error('Connection %s:%d timed out', addr[0], addr[1])
log.info('Connection %s:%d timed out', addr[0], addr[1])
finally:
log.debug('Closing connection with %s', addr)
conn.close()
Expand Down

0 comments on commit 06bdc67

Please sign in to comment.