diff --git a/configuration/parser.go b/configuration/parser.go index 934a942af..1306b0c20 100644 --- a/configuration/parser.go +++ b/configuration/parser.go @@ -206,6 +206,7 @@ func (p *Parser) overwriteStruct(v reflect.Value, fullpath string, path []string fieldVal := reflect.New(sf.Type) err := yaml.Unmarshal([]byte(payload), fieldVal.Interface()) if err != nil { + logrus.Warnf("Error parsing environment variable %s", fullpath) return err } field.Set(reflect.Indirect(fieldVal))