From 77a412b5f7ec04d3ff9698f0758925ca3b0c5bcc Mon Sep 17 00:00:00 2001 From: Daniel Werner Date: Thu, 26 Dec 2024 15:24:15 -0800 Subject: [PATCH] common: fix RAV component log name --- packages/indexer-common/src/allocations/tap-collector.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/indexer-common/src/allocations/tap-collector.ts b/packages/indexer-common/src/allocations/tap-collector.ts index 00b8a930a..90c4f7ca6 100644 --- a/packages/indexer-common/src/allocations/tap-collector.ts +++ b/packages/indexer-common/src/allocations/tap-collector.ts @@ -127,7 +127,7 @@ export class TapCollector { networkSubgraph, }: TapCollectorOptions): TapCollector { const collector = new TapCollector() - collector.logger = logger.child({ component: 'AllocationReceiptCollector' }) + collector.logger = logger.child({ component: 'TapCollector' }) collector.metrics = registerReceiptMetrics( metrics, networkSpecification.networkIdentifier,