Skip to content

Commit

Permalink
Update mountpoint-s3/src/fuse.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Alessandro Passaro <[email protected]>
Signed-off-by: Renan Magagnin <[email protected]>
  • Loading branch information
renanmagagnin and passaro authored Dec 10, 2024
1 parent 70a5f7c commit 51c0fb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mountpoint-s3/src/fuse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ macro_rules! event {
macro_rules! fuse_error {
($name:literal, $reply:expr, $err:expr) => {{
let err = $err;
event!(err.level, "{} Errno: {} failed: {:#}", $name, err.to_errno(), err);
event!(err.level, "{} failed with errno {}: {:#}", $name, err.to_errno(), err);
::metrics::counter!("fuse.op_failures", "op" => $name).increment(1);
$reply.error(err.to_errno());
}};
Expand Down

0 comments on commit 51c0fb2

Please sign in to comment.