From 9539823c35d7c0f2ee3cc3dc0ff906c265e08afb Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Tue, 1 Jan 2019 03:04:44 -0800 Subject: [PATCH] fix log --- weed/filesys/dirty_page.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/weed/filesys/dirty_page.go b/weed/filesys/dirty_page.go index c69851071..696296e62 100644 --- a/weed/filesys/dirty_page.go +++ b/weed/filesys/dirty_page.go @@ -34,7 +34,7 @@ func (pages *ContinuousDirtyPages) releaseResource() { pages.f.wfs.bufPool.Put(pages.Data) pages.Data = nil atomic.AddInt32(&counter, -1) - glog.V(3).Infof("%s/%s releasing resource", pages.f.dir.Path, pages.f.Name, counter) + glog.V(3).Infof("%s/%s releasing resource %d", pages.f.dir.Path, pages.f.Name, counter) } } @@ -55,7 +55,7 @@ func (pages *ContinuousDirtyPages) AddPage(ctx context.Context, offset int64, da if pages.Data == nil { pages.Data = pages.f.wfs.bufPool.Get().([]byte) atomic.AddInt32(&counter, 1) - glog.V(3).Infof("%s/%s acquire resource", pages.f.dir.Path, pages.f.Name, counter) + glog.V(3).Infof("%s/%s acquire resource %d", pages.f.dir.Path, pages.f.Name, counter) } if offset < pages.Offset || offset >= pages.Offset+int64(len(pages.Data)) ||