Skip to content

Commit

Permalink
Fixes typo in log message (#17897)
Browse files Browse the repository at this point in the history
* Fixes typo in log message

* Adding CHANGELOG entry
  • Loading branch information
ycombinator committed Apr 25, 2020
1 parent 96f66a4 commit ad21d71
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
- Remove migrationVersion map 7.7.0 reference from Kibana dashboard file to fix backward compatibility issues. {pull}17425[17425]
- Fix issue 17734 to retry on rate-limit error in the Filebeat httpjson input. {issue}17734[17734] {pull}17735[17735]
- Fixed `cloudfoundry.access` to have the correct `cloudfoundry.app.id` contents. {pull}17847[17847]
- Fixed typo in log message. {pull}17897[17897]

*Heartbeat*

Expand Down
2 changes: 1 addition & 1 deletion filebeat/input/log/input.go
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ func NewInput(
// It goes through all states coming from the registry. Only the states which match the glob patterns of
// the input will be loaded and updated. All other states will not be touched.
func (p *Input) loadStates(states []file.State) error {
logp.Debug("input", "exclude_files: %s. Number of stats: %d", p.config.ExcludeFiles, len(states))
logp.Debug("input", "exclude_files: %s. Number of states: %d", p.config.ExcludeFiles, len(states))

for _, state := range states {
// Check if state source belongs to this input. If yes, update the state.
Expand Down

0 comments on commit ad21d71

Please sign in to comment.