Skip to content

Commit

Permalink
change confusing logging message when opening a file
Browse files Browse the repository at this point in the history
  • Loading branch information
infeo committed Aug 16, 2024
1 parent 45f3531 commit f74394c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ public int open(String path, FileInfo fi) {
try (PathLock pathLock = lockManager.lockForReading(path);
DataLock _ = pathLock.lockDataForReading()) {
Path node = resolvePath(fileNameTranscoder.fuseToNio(path));
LOG.trace("open {} ({})", path, fi.getFh());
LOG.trace("open {}", path);
fileHandler.open(node, fi);
return 0;
} catch (NoSuchFileException e) {
Expand Down

0 comments on commit f74394c

Please sign in to comment.