From b3447f437565b5c3232f2bbc2109663459ffd8bd Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Wed, 6 Jun 2018 02:21:36 -0700 Subject: [PATCH] adjust logging --- weed/filesys/wfs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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