Skip to content

Commit

Permalink
Fix exporter error logging
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonpaulos committed Apr 26, 2024
1 parent 5ae5acb commit 7e0d0b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conduit/pipeline/pipeline.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)
}
}
Expand Down

0 comments on commit 7e0d0b0

Please sign in to comment.