diff options
| author | Chris Lu <chris.lu@gmail.com> | 2018-06-06 02:21:36 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2018-06-06 02:21:36 -0700 |
| commit | b3447f437565b5c3232f2bbc2109663459ffd8bd (patch) | |
| tree | 492c7783890bb6677fd9a55c5f95fdb5026c1323 | |
| parent | 6816661b0f7948bb77de986398f7b892a58bbd11 (diff) | |
| download | seaweedfs-b3447f437565b5c3232f2bbc2109663459ffd8bd.tar.xz seaweedfs-b3447f437565b5c3232f2bbc2109663459ffd8bd.zip | |
adjust logging
| -rw-r--r-- | weed/filesys/wfs.go | 2 |
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 |
