diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index 230f50771088..94318b5cf491 100644 --- a/CHANGELOG.asciidoc +++ b/CHANGELOG.asciidoc @@ -8,7 +8,7 @@ // Template, add newest changes here === Beats version HEAD -https://github.com/elastic/beats/compare/v5.3.1...master[Check the HEAD diff] +https://github.com/elastic/beats/compare/v5.3.2...master[Check the HEAD diff] ==== Breaking changes @@ -28,6 +28,7 @@ https://github.com/elastic/beats/compare/v5.3.1...master[Check the HEAD diff] ==== Bugfixes *Affecting all Beats* +- Fix console output {pull}4045[4045] *Filebeat* diff --git a/libbeat/outputs/console/console.go b/libbeat/outputs/console/console.go index 3a62c45c9e0d..e149b83dbbb3 100644 --- a/libbeat/outputs/console/console.go +++ b/libbeat/outputs/console/console.go @@ -78,6 +78,7 @@ func (c *console) PublishEvent( } op.SigCompleted(s) + return nil fail: if opts.Guaranteed { logp.Critical("Unable to publish events to console: %v", err)