aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchrislu <chris.lu@gmail.com>2022-06-21 12:21:02 -0700
committerchrislu <chris.lu@gmail.com>2022-06-21 12:21:02 -0700
commit6b3beb709dcb7a84ccf0750d50bbc33260e50a71 (patch)
treead81084d570582039a54934e89fba4fbd02aacf4
parent4dc27e1ed598b1c1aa4facae856da1f71df00ea1 (diff)
downloadseaweedfs-6b3beb709dcb7a84ccf0750d50bbc33260e50a71.tar.xz
seaweedfs-6b3beb709dcb7a84ccf0750d50bbc33260e50a71.zip
fix format
-rw-r--r--weed/mount/inode_to_path.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/mount/inode_to_path.go b/weed/mount/inode_to_path.go
index 64cabfaf5..fa17a9261 100644
--- a/weed/mount/inode_to_path.go
+++ b/weed/mount/inode_to_path.go
@@ -176,7 +176,7 @@ func (i *InodeToPath) MovePath(sourcePath, targetPath util.FullPath) (replacedIn
entry.nlookup++
}
} else {
- glog.Errorf("MovePath %s to %s: sourceInode %s not found", sourcePath, targetPath, sourceInode)
+ glog.Errorf("MovePath %s to %s: sourceInode %d not found", sourcePath, targetPath, sourceInode)
}
return targetInode
}