diff options
| author | yulai.li <blacktear23@gmail.com> | 2021-08-26 16:20:35 +0800 |
|---|---|---|
| committer | yulai.li <blacktear23@gmail.com> | 2021-08-26 16:20:35 +0800 |
| commit | 546efeba8f83b008bc76bf8c7879ab765aea4e18 (patch) | |
| tree | e64bc179be4adef70dd28f850dd377394ab5df5e /weed/filer/configuration.go | |
| parent | 2088f28424184a40bf2a9e5bae2af3f7898a2a5c (diff) | |
| download | seaweedfs-546efeba8f83b008bc76bf8c7879ab765aea4e18.tar.xz seaweedfs-546efeba8f83b008bc76bf8c7879ab765aea4e18.zip | |
Fix build bug
Diffstat (limited to 'weed/filer/configuration.go')
| -rw-r--r-- | weed/filer/configuration.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/weed/filer/configuration.go b/weed/filer/configuration.go index 9ef2f3e0f..da75b575b 100644 --- a/weed/filer/configuration.go +++ b/weed/filer/configuration.go @@ -82,6 +82,7 @@ func (f *Filer) LoadConfiguration(config *util.ViperProxy) { func validateOneEnabledStore(config *util.ViperProxy) { enabledStore := "" for _, store := range Stores { + glog.V(0).Infof("Store Engines: %v", store.GetName()) if config.GetBool(store.GetName() + ".enabled") { if enabledStore == "" { enabledStore = store.GetName() |
