Remove annoying logs when config file not found (#22717)

Signed-off-by: Enwei Jiao <enwei.jiao@zilliz.com>
This commit is contained in:
Enwei Jiao 2023-03-13 18:20:02 +08:00 committed by GitHub
parent fa2c1c1f40
commit d5ef0448f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -98,7 +98,6 @@ func (fs *FileSource) loadFromFile() error {
newConfig := make(map[string]string)
for _, configFile := range fs.files {
if _, err := os.Stat(configFile); err != nil {
log.Info("cannot access config file", zap.String("configFile", configFile))
continue
}