Skip to content

Commit

Permalink
Merge pull request #591 from fosterseth/log_connection_timeout_duration
Browse files Browse the repository at this point in the history
Provide log connection timeout duration in log
  • Loading branch information
fosterseth authored Apr 13, 2022
2 parents a96b855 + f8754a8 commit 5f89364
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/netceptor/netceptor.go
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,7 @@ func (s *Netceptor) monitorConnectionAging() {
}
s.connLock.RUnlock()
for i := range timedOut {
logger.Warning("Timing out connection\n")
logger.Warning("Timing out connection, idle for the past %s\n", s.maxConnectionIdleTime)
timedOut[i]()
}
case <-s.context.Done():
Expand Down

0 comments on commit 5f89364

Please sign in to comment.