FIX: Log info fix

This commit is contained in:
David Zhou 2025-05-15 10:12:14 -04:00
parent 3e10bd67ba
commit 8eb3d90346

View file

@ -267,8 +267,7 @@ func NewFirehose(config *FirehoseConfig) *Firehose {
} }
if config.ConcurrentBlockFlushing > 0 { if config.ConcurrentBlockFlushing > 0 {
log.Info("Firehose concurrent block flushing enabled, starting", config.ConcurrentBlockFlushing, log.Info(fmt.Sprintf("Firehose concurrent block flushing enabled, starting %d worker goroutine", config.ConcurrentBlockFlushing))
"block print worker goroutine")
firehose.flushJobQueue = make(chan *blockPrintJob, firehose.flushBufferSize) firehose.flushJobQueue = make(chan *blockPrintJob, firehose.flushBufferSize)
firehose.flushOrderedOutputQueue = make(chan *blockOutput, firehose.flushBufferSize) firehose.flushOrderedOutputQueue = make(chan *blockOutput, firehose.flushBufferSize)