Skip to content

Commit a72b4fb

Browse files
authored
Merge pull request #712 from nextcloud/fix/log-warn-as-debug
fix: add missing prefix to log as debug
2 parents 21ce15b + 5269925 commit a72b4fb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/connection.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ pub async fn handle_user_socket(
226226
// hack while warp only has opaque error types
227227
match formatted.as_str() {
228228
"WebSocket protocol error: Connection reset without closing handshake"
229-
| "Broken pipe (os error 32)"
229+
| "IO error: Broken pipe (os error 32)"
230230
| "IO error: Connection reset by peer (os error 104)" => {
231231
log::debug!("websocket error: {e:#}")
232232
}

0 commit comments

Comments
 (0)