From fc96d18a6528407dee76f2b239669f02f8325446 Mon Sep 17 00:00:00 2001 From: Andrew Kroh Date: Tue, 10 May 2016 04:24:15 -0400 Subject: [PATCH] Adding missing argument to a Winlogbeat log message. (#1590) --- CHANGELOG.asciidoc | 2 ++ winlogbeat/beater/winlogbeat.go | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index 913356add37..1b9cc4135aa 100644 --- a/CHANGELOG.asciidoc +++ b/CHANGELOG.asciidoc @@ -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* diff --git a/winlogbeat/beater/winlogbeat.go b/winlogbeat/beater/winlogbeat.go index 10d334a4886..74f5527f699 100644 --- a/winlogbeat/beater/winlogbeat.go +++ b/winlogbeat/beater/winlogbeat.go @@ -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)