diff options
| author | Chris Lu <chris.lu@gmail.com> | 2020-04-09 23:43:09 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2020-04-09 23:43:09 -0700 |
| commit | 9fa065f600cbb4fbdabcca60e12fb144a4ed97b5 (patch) | |
| tree | e783772100eead56a29b5839d65a9ba1c15a109f | |
| parent | 8db2120bee6073a5e781271563ddc9996c509719 (diff) | |
| download | seaweedfs-9fa065f600cbb4fbdabcca60e12fb144a4ed97b5.tar.xz seaweedfs-9fa065f600cbb4fbdabcca60e12fb144a4ed97b5.zip | |
typo in logs
| -rw-r--r-- | weed/storage/store.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/storage/store.go b/weed/storage/store.go index 84374b174..d6b623e63 100644 --- a/weed/storage/store.go +++ b/weed/storage/store.go @@ -421,7 +421,7 @@ func (s *Store) MaybeAdjustVolumeMax() (hasChanges bool) { maxVolumeCount += int(uint64(unclaimedSpaces)/volumeSizeLimit) - 1 } diskLocation.MaxVolumeCount = maxVolumeCount - glog.V(0).Infof("disk %s max %d unclaimedSpace:%dMB, unused:%dMB volumeSizeLimit:%d/MB", + glog.V(0).Infof("disk %s max %d unclaimedSpace:%dMB, unused:%dMB volumeSizeLimit:%dMB", diskLocation.Directory, maxVolumeCount, unclaimedSpaces/1024/1024, unusedSpace/1024/1024, volumeSizeLimit/1024/1024) hasChanges = true } |
