From 20c0512ab450fe48e09c9997f86c02e6985ef951 Mon Sep 17 00:00:00 2001 From: Jason Paulos Date: Wed, 15 May 2024 14:34:32 -0400 Subject: [PATCH] Fix exporter error logging (#170) --- conduit/pipeline/pipeline.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conduit/pipeline/pipeline.go b/conduit/pipeline/pipeline.go index 5a1adf4..a0604eb 100644 --- a/conduit/pipeline/pipeline.go +++ b/conduit/pipeline/pipeline.go @@ -631,7 +631,7 @@ func (p *pipelineImpl) exporterHandler(exporter exporters.Exporter, blkChan plug if callbackErr != nil { p.logger.Errorf( "exporter %s # round %d failed callback #%d but CONTINUING to NextRound=%d: %v", - eName, lastRound, i, nextRound, lastError, + eName, lastRound, i, nextRound, callbackErr, ) } }