From d745e1476b48ff8a3e81ffcee2195342863b8a8f Mon Sep 17 00:00:00 2001 From: Santiago Palladino Date: Fri, 6 Dec 2024 18:28:01 -0300 Subject: [PATCH] Fixes post rebase --- yarn-project/archiver/src/archiver/archiver.ts | 2 +- yarn-project/epoch-cache/src/epoch_cache.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/yarn-project/archiver/src/archiver/archiver.ts b/yarn-project/archiver/src/archiver/archiver.ts index c4806e34316e..b897f117bc81 100644 --- a/yarn-project/archiver/src/archiver/archiver.ts +++ b/yarn-project/archiver/src/archiver/archiver.ts @@ -116,7 +116,7 @@ export class Archiver implements ArchiveSource { private readonly config: { pollingIntervalMs: number; batchSize: number }, private readonly instrumentation: ArchiverInstrumentation, private readonly l1constants: L1RollupConstants, - private readonly log: DebugLogger = createDebugLogger('archiver'), + private readonly log: Logger = createLogger('archiver'), ) { this.store = new ArchiverStoreHelper(dataStore); diff --git a/yarn-project/epoch-cache/src/epoch_cache.ts b/yarn-project/epoch-cache/src/epoch_cache.ts index 7ebee68ef149..4c4314893b2a 100644 --- a/yarn-project/epoch-cache/src/epoch_cache.ts +++ b/yarn-project/epoch-cache/src/epoch_cache.ts @@ -6,7 +6,7 @@ import { } from '@aztec/circuit-types'; import { RollupContract, createEthereumChain } from '@aztec/ethereum'; import { EthAddress } from '@aztec/foundation/eth-address'; -import { type Logger, createDebugLogger } from '@aztec/foundation/log'; +import { type Logger, createLogger } from '@aztec/foundation/log'; import { createPublicClient, encodeAbiParameters, http, keccak256 } from 'viem'; @@ -32,7 +32,7 @@ export class EpochCache { private committee: EthAddress[]; private cachedEpoch: bigint; private cachedSampleSeed: bigint; - private readonly log: Logger = createDebugLogger('aztec:EpochCache'); + private readonly log: Logger = createLogger('aztec:EpochCache'); constructor( private rollup: RollupContract,