diff --git a/config/config.go b/config/config.go index 33ebf5d25..2a8448a8c 100644 --- a/config/config.go +++ b/config/config.go @@ -540,7 +540,10 @@ func (c *Config) LoadConfigData(data []byte) error { } if len(c.UnusedFields) > 0 { - return fmt.Errorf("line %d: configuration specified the fields %q, but they weren't used", tbl.Line, keys(c.UnusedFields)) + return fmt.Errorf( + "line %d: configuration specified the fields %q, but they were not used. "+ + "This is either a typo or this config option does not exist in this version.", + tbl.Line, keys(c.UnusedFields)) } // Initialize the file-sorting slices @@ -575,7 +578,9 @@ func (c *Config) LoadConfigData(data []byte) error { pluginName) } if len(c.UnusedFields) > 0 { - return fmt.Errorf("plugin %s.%s: line %d: configuration specified the fields %q, but they weren't used", + return fmt.Errorf( + "plugin %s.%s: line %d: configuration specified the fields %q, but they were not used. "+ + "This is either a typo or this config option does not exist in this version.", name, pluginName, subTable.Line, keys(c.UnusedFields)) } } @@ -598,7 +603,9 @@ func (c *Config) LoadConfigData(data []byte) error { pluginName) } if len(c.UnusedFields) > 0 { - return fmt.Errorf("plugin %s.%s: line %d: configuration specified the fields %q, but they weren't used", + return fmt.Errorf( + "plugin %s.%s: line %d: configuration specified the fields %q, but they were not used. "+ + "This is either a typo or this config option does not exist in this version.", name, pluginName, subTable.Line, keys(c.UnusedFields)) } } @@ -617,7 +624,8 @@ func (c *Config) LoadConfigData(data []byte) error { } if len(c.UnusedFields) > 0 { return fmt.Errorf( - "plugin %s.%s: line %d: configuration specified the fields %q, but they weren't used", + "plugin %s.%s: line %d: configuration specified the fields %q, but they were not used. "+ + "This is either a typo or this config option does not exist in this version.", name, pluginName, subTable.Line, @@ -639,7 +647,9 @@ func (c *Config) LoadConfigData(data []byte) error { pluginName) } if len(c.UnusedFields) > 0 { - return fmt.Errorf("plugin %s.%s: line %d: configuration specified the fields %q, but they weren't used", + return fmt.Errorf( + "plugin %s.%s: line %d: configuration specified the fields %q, but they were not used. "+ + "This is either a typo or this config option does not exist in this version.", name, pluginName, subTable.Line, keys(c.UnusedFields)) } } @@ -656,7 +666,8 @@ func (c *Config) LoadConfigData(data []byte) error { return fmt.Errorf("unsupported config format: %s", pluginName) } if len(c.UnusedFields) > 0 { - msg := "plugin %s.%s: line %d: configuration specified the fields %q, but they weren't used" + msg := "plugin %s.%s: line %d: configuration specified the fields %q, but they were not used. " + + "This is either a typo or this config option does not exist in this version." return fmt.Errorf(msg, name, pluginName, subTable.Line, keys(c.UnusedFields)) } } diff --git a/config/config_test.go b/config/config_test.go index 64e74c6e8..97644ac3f 100644 --- a/config/config_test.go +++ b/config/config_test.go @@ -373,52 +373,62 @@ func TestConfig_FieldNotDefined(t *testing.T) { { name: "in input plugin without parser", filename: "./testdata/invalid_field.toml", - expected: `line 1: configuration specified the fields ["not_a_field"], but they weren't used`, + expected: "line 1: configuration specified the fields [\"not_a_field\"], but they were not used. " + + "This is either a typo or this config option does not exist in this version.", }, { name: "in input plugin with parser", filename: "./testdata/invalid_field_with_parser.toml", - expected: `line 1: configuration specified the fields ["not_a_field"], but they weren't used`, + expected: "line 1: configuration specified the fields [\"not_a_field\"], but they were not used. " + + "This is either a typo or this config option does not exist in this version.", }, { name: "in input plugin with parser func", filename: "./testdata/invalid_field_with_parserfunc.toml", - expected: `line 1: configuration specified the fields ["not_a_field"], but they weren't used`, + expected: "line 1: configuration specified the fields [\"not_a_field\"], but they were not used. " + + "This is either a typo or this config option does not exist in this version.", }, { name: "in parser of input plugin", filename: "./testdata/invalid_field_in_parser_table.toml", - expected: `line 1: configuration specified the fields ["not_a_field"], but they weren't used`, + expected: "line 1: configuration specified the fields [\"not_a_field\"], but they were not used. " + + "This is either a typo or this config option does not exist in this version.", }, { name: "in parser of input plugin with parser-func", filename: "./testdata/invalid_field_in_parserfunc_table.toml", - expected: `line 1: configuration specified the fields ["not_a_field"], but they weren't used`, + expected: "line 1: configuration specified the fields [\"not_a_field\"], but they were not used. " + + "This is either a typo or this config option does not exist in this version.", }, { name: "in processor plugin without parser", filename: "./testdata/invalid_field_processor.toml", - expected: `line 1: configuration specified the fields ["not_a_field"], but they weren't used`, + expected: "line 1: configuration specified the fields [\"not_a_field\"], but they were not used. " + + "This is either a typo or this config option does not exist in this version.", }, { name: "in processor plugin with parser", filename: "./testdata/invalid_field_processor_with_parser.toml", - expected: `line 1: configuration specified the fields ["not_a_field"], but they weren't used`, + expected: "line 1: configuration specified the fields [\"not_a_field\"], but they were not used. " + + "This is either a typo or this config option does not exist in this version.", }, { name: "in processor plugin with parser func", filename: "./testdata/invalid_field_processor_with_parserfunc.toml", - expected: `line 1: configuration specified the fields ["not_a_field"], but they weren't used`, + expected: "line 1: configuration specified the fields [\"not_a_field\"], but they were not used. " + + "This is either a typo or this config option does not exist in this version.", }, { name: "in parser of processor plugin", filename: "./testdata/invalid_field_processor_in_parser_table.toml", - expected: `line 1: configuration specified the fields ["not_a_field"], but they weren't used`, + expected: "line 1: configuration specified the fields [\"not_a_field\"], but they were not used. " + + "This is either a typo or this config option does not exist in this version.", }, { name: "in parser of processor plugin with parser-func", filename: "./testdata/invalid_field_processor_in_parserfunc_table.toml", - expected: `line 1: configuration specified the fields ["not_a_field"], but they weren't used`, + expected: "line 1: configuration specified the fields [\"not_a_field\"], but they were not used. " + + "This is either a typo or this config option does not exist in this version.", }, }