Skip to content

Commit

Permalink
Merge pull request #745 from relunctance/master
Browse files Browse the repository at this point in the history
Fixed Wrong parameters entered by user (#703)
  • Loading branch information
slimus authored Jun 3, 2020
2 parents f7fd4b3 + 4fe064f commit dd92459
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion input_raw.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ func (i *RAWInput) listen(address string) {
host, port, err := net.SplitHostPort(address)

if err != nil {
log.Fatal("input-raw: error while parsing address", err)
log.Fatalf("input-raw: error while parsing address: %s", err)
}

i.listener = raw.NewListener(host, port, i.engine, i.trackResponse, i.expire, i.bpfFilter, i.timestampType, i.bufferSize, Settings.inputRAWOverrideSnapLen, Settings.inputRAWImmediateMode)
Expand Down

0 comments on commit dd92459

Please sign in to comment.