diff options
| author | chrislu <chris.lu@gmail.com> | 2024-10-28 11:28:40 -0700 |
|---|---|---|
| committer | chrislu <chris.lu@gmail.com> | 2024-10-28 11:29:08 -0700 |
| commit | 9105c6bdd1546b1ef547c4327543ab70508ed958 (patch) | |
| tree | efccfac3ad1d36b83ecfe88b9d83ccd1fa1e6923 /weed/shell/command_ec_encode.go | |
| parent | ebbb35d533d183adbd85b696299b7946cc3300d0 (diff) | |
| download | seaweedfs-9105c6bdd1546b1ef547c4327543ab70508ed958.tar.xz seaweedfs-9105c6bdd1546b1ef547c4327543ab70508ed958.zip | |
fix format
Diffstat (limited to 'weed/shell/command_ec_encode.go')
| -rw-r--r-- | weed/shell/command_ec_encode.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/shell/command_ec_encode.go b/weed/shell/command_ec_encode.go index 84ce4ad68..923910706 100644 --- a/weed/shell/command_ec_encode.go +++ b/weed/shell/command_ec_encode.go @@ -318,13 +318,13 @@ func collectVolumeIdsForEcEncode(commandEnv *CommandEnv, selectedCollection stri if good, found := vidMap[v.Id]; found { if good { if diskInfo.FreeVolumeCount < 2 { - glog.V(0).Infof("skip %d.%d on %s, no free disk", v.Id, v.Collection, dn.Id) + glog.V(0).Infof("skip %s %d on %s, no free disk", v.Collection, v.Id, dn.Id) vidMap[v.Id] = false } } } else { if diskInfo.FreeVolumeCount < 2 { - glog.V(0).Infof("skip %d.%d on %s, no free disk", v.Id, v.Collection, dn.Id) + glog.V(0).Infof("skip %d %d on %s, no free disk", v.Collection, v.Id, dn.Id) vidMap[v.Id] = false } else { vidMap[v.Id] = true |
