From 8eb3d90346dac45e80b739abcb5e346275bd8d57 Mon Sep 17 00:00:00 2001 From: David Zhou Date: Thu, 15 May 2025 10:12:14 -0400 Subject: [PATCH] FIX: Log info fix --- eth/tracers/firehose.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/eth/tracers/firehose.go b/eth/tracers/firehose.go index 5a517770c8..95cc98e005 100644 --- a/eth/tracers/firehose.go +++ b/eth/tracers/firehose.go @@ -267,8 +267,7 @@ func NewFirehose(config *FirehoseConfig) *Firehose { } if config.ConcurrentBlockFlushing > 0 { - log.Info("Firehose concurrent block flushing enabled, starting", config.ConcurrentBlockFlushing, - "block print worker goroutine") + log.Info(fmt.Sprintf("Firehose concurrent block flushing enabled, starting %d worker goroutine", config.ConcurrentBlockFlushing)) firehose.flushJobQueue = make(chan *blockPrintJob, firehose.flushBufferSize) firehose.flushOrderedOutputQueue = make(chan *blockOutput, firehose.flushBufferSize)