Skip to content

Commit

Permalink
fix double negative in error message (elastic#8495)
Browse files Browse the repository at this point in the history
  • Loading branch information
jcallaha authored and ruflin committed Oct 1, 2018
1 parent 2653183 commit dd1c408
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion filebeat/input/syslog/input.go
Expand Up @@ -128,7 +128,7 @@ func NewInput(
Parse(data, ev)
var d *util.Data
if !ev.IsValid() {
log.Errorw("can't not parse event as syslog rfc3164", "message", string(data))
log.Errorw("can't parse event as syslog rfc3164", "message", string(data))
// On error revert to the raw bytes content, we need a better way to communicate this kind of
// error upstream this should be a global effort.
d = &util.Data{
Expand Down

0 comments on commit dd1c408

Please sign in to comment.