Skip to content

Commit

Permalink
log
Browse files Browse the repository at this point in the history
  • Loading branch information
ph committed Dec 6, 2018
1 parent e68ad48 commit 6da11e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libbeat/publisher/pipeline/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -190,15 +190,15 @@ func (c *client) onPublished() {
}

func (c *client) onFilteredOut(e beat.Event) {
c.pipeline.logger.Debug("Pipeline client receives 'onFilteredOut' callback for event: %+v", e)
c.pipeline.logger.Debug("Pipeline client receives callback 'onFilteredOut' for event: %+v", e)
c.pipeline.observer.filteredEvent()
if c.eventer != nil {
c.eventer.FilteredOut(e)
}
}

func (c *client) onDroppedOnPublish(e beat.Event) {
c.pipeline.logger.Debug("Pipeline client receives 'onDroppedOnPublish' callback for event: %+v", e)
c.pipeline.logger.Debug("Pipeline client receives callback 'onDroppedOnPublish' for event: %+v", e)
c.pipeline.observer.failedPublishEvent()
if c.eventer != nil {
c.eventer.DroppedOnPublish(e)
Expand Down

0 comments on commit 6da11e9

Please sign in to comment.