Skip to content

Commit

Permalink
linux_session: log channel already closed as debug
Browse files Browse the repository at this point in the history
This is too noisy when used as a library, and gets logged once per
thread even.
  • Loading branch information
flokli committed Jun 13, 2024
1 parent 740630e commit 34c553e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/transport/fusedev/linux_session.rs
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ impl FuseChannel {
}
}
} else if event.is_error() {
info!("FUSE channel already closed!");
debug!("FUSE channel already closed!");
return Err(SessionFailure("epoll error".to_string()));
} else {
// We should not step into this branch as other event is not registered.
Expand Down

0 comments on commit 34c553e

Please sign in to comment.