Skip to content

Commit

Permalink
Remove 'inputs.' prefix when logging loaded inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
glinton authored and otherpirate committed Mar 15, 2019
1 parent 4a96c4c commit ca14273
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ type AgentConfig struct {
func (c *Config) InputNames() []string {
var name []string
for _, input := range c.Inputs {
name = append(name, input.Name())
name = append(name, input.Config.Name)
}
return name
}
Expand Down

0 comments on commit ca14273

Please sign in to comment.