Skip to content

Commit

Permalink
Adding missing argument to a Winlogbeat log message. (#1590)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewkroh authored and tsg committed May 10, 2016
1 parent c175a0c commit fc96d18
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ https://github.com/elastic/beats/compare/v5.0.0-alpha2...master[Check the HEAD d

*Winlogbeat*

- Adding missing argument to the "Stop processing" log message. {pull}1590[1590]

==== Added

*Affecting all Beats*
Expand Down
2 changes: 1 addition & 1 deletion winlogbeat/beater/winlogbeat.go
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ func (eb *Winlogbeat) processEventLog(
return
}
defer func() {
logp.Info("EventLog[%s] Stop processing.")
logp.Info("EventLog[%s] Stop processing.", api.Name())

if err := api.Close(); err != nil {
logp.Warn("EventLog[%s] Close() error. %v", api.Name(), err)
Expand Down

0 comments on commit fc96d18

Please sign in to comment.