aboutsummaryrefslogtreecommitdiff
path: root/weed/filesys/wfs.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2018-06-06 02:21:36 -0700
committerChris Lu <chris.lu@gmail.com>2018-06-06 02:21:36 -0700
commitb3447f437565b5c3232f2bbc2109663459ffd8bd (patch)
tree492c7783890bb6677fd9a55c5f95fdb5026c1323 /weed/filesys/wfs.go
parent6816661b0f7948bb77de986398f7b892a58bbd11 (diff)
downloadseaweedfs-b3447f437565b5c3232f2bbc2109663459ffd8bd.tar.xz
seaweedfs-b3447f437565b5c3232f2bbc2109663459ffd8bd.zip
adjust logging
Diffstat (limited to 'weed/filesys/wfs.go')
-rw-r--r--weed/filesys/wfs.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/filesys/wfs.go b/weed/filesys/wfs.go
index 127252058..18a7da23f 100644
--- a/weed/filesys/wfs.go
+++ b/weed/filesys/wfs.go
@@ -91,7 +91,7 @@ func (wfs *WFS) AcquireHandle(file *File, uid, gid uint32) (handle *FileHandle)
wfs.handles = append(wfs.handles, handle)
handle.handle = uint64(len(wfs.handles) - 1)
- println(fullpath, "new handle id", handle.handle)
+ glog.V(4).Infoln(fullpath, "new handle id", handle.handle)
wfs.pathToHandleIndex[fullpath] = int(handle.handle)
return