Skip to content

Commit 0e08fc5

Browse files
committed
fix: remove redundant log on connection timeout
The info log for connection timeout was unnecessary as the error is already propagated and logged elsewhere. This cleanup reduces log noise while maintaining the same error handling behavior.
1 parent 3af0256 commit 0e08fc5

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/connection.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,6 @@ impl ConnectionActor {
117117
}
118118

119119
if self.last_read.elapsed() > CONNECTION_TIME_OUT_MS {
120-
info!("{} Connection timed out", self.id);
121120
return Err(anyhow::anyhow!("Connection timed out"));
122121
}
123122
}

0 commit comments

Comments
 (0)