Skip to content

Commit

Permalink
fix: Dont log parent path.
Browse files Browse the repository at this point in the history
  • Loading branch information
milesj committed Jan 11, 2025
1 parent e9adaca commit 910b22e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/utils/src/fs_lock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ impl FileLock {
return Ok(());
}

trace!(path = ?self.lock.parent().unwrap(), "Unlocking path");
trace!(path = ?self.lock, "Unlocking path");

let handle_error = |error: std::io::Error| FsError::Unlock {
path: self.lock.to_path_buf(),
Expand Down

0 comments on commit 910b22e

Please sign in to comment.