From 7c6324b114a3cfb26cf0130431376d3830ffcef1 Mon Sep 17 00:00:00 2001 From: chrislu Date: Sun, 4 Sep 2022 22:21:24 -0700 Subject: [PATCH] adjust log level --- weed/storage/store.go | 2 +- weed/storage/volume.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/weed/storage/store.go b/weed/storage/store.go index 3cb35cb85..e12fb2c50 100644 --- a/weed/storage/store.go +++ b/weed/storage/store.go @@ -549,7 +549,7 @@ func (s *Store) MaybeAdjustVolumeMax() (hasChanges bool) { maxVolumeCount += int32(uint64(unclaimedSpaces)/volumeSizeLimit) - 1 } atomic.StoreInt32(&diskLocation.MaxVolumeCount, maxVolumeCount) - glog.V(2).Infof("disk %s max %d unclaimedSpace:%dMB, unused:%dMB volumeSizeLimit:%dMB", + glog.V(4).Infof("disk %s max %d unclaimedSpace:%dMB, unused:%dMB volumeSizeLimit:%dMB", diskLocation.Directory, maxVolumeCount, unclaimedSpaces/1024/1024, unusedSpace/1024/1024, volumeSizeLimit/1024/1024) hasChanges = hasChanges || currentMaxVolumeCount != atomic.LoadInt32(&diskLocation.MaxVolumeCount) } diff --git a/weed/storage/volume.go b/weed/storage/volume.go index e48a2f49a..1a9c8bd24 100644 --- a/weed/storage/volume.go +++ b/weed/storage/volume.go @@ -284,7 +284,7 @@ func (v *Volume) expiredLongEnough(maxDelayMinutes uint32) bool { func (v *Volume) collectStatus() (maxFileKey types.NeedleId, datFileSize int64, modTime time.Time, fileCount, deletedCount, deletedSize uint64, ok bool) { v.dataFileAccessLock.RLock() defer v.dataFileAccessLock.RUnlock() - glog.V(3).Infof("collectStatus volume %d", v.Id) + glog.V(4).Infof("collectStatus volume %d", v.Id) if v.nm == nil || v.DataBackend == nil { return