diff --git a/lib/logstash/multiqueue.rb b/lib/logstash/multiqueue.rb index 2a070cb08..36753cd6a 100644 --- a/lib/logstash/multiqueue.rb +++ b/lib/logstash/multiqueue.rb @@ -12,7 +12,7 @@ class LogStash::MultiQueue # Push an object to all queues. public def push(object) - @logger.info "*** Pushing object into MultiQueue: #{object}" + #@logger.info "*** Pushing object into MultiQueue: #{object}" @queues.each { |q| q.push(object) } end # def push alias :<< :push