From fffa97c5e43d2e2ec6954eef5285d263c8f93140 Mon Sep 17 00:00:00 2001 From: Alex Gherghisan Date: Mon, 2 Oct 2023 10:39:10 +0100 Subject: [PATCH] refactor: remove debug log in world state sync --- .../src/synchronizer/server_world_state_synchronizer.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/yarn-project/world-state/src/synchronizer/server_world_state_synchronizer.ts b/yarn-project/world-state/src/synchronizer/server_world_state_synchronizer.ts index 2c936fbe264..feec721e2a3 100644 --- a/yarn-project/world-state/src/synchronizer/server_world_state_synchronizer.ts +++ b/yarn-project/world-state/src/synchronizer/server_world_state_synchronizer.ts @@ -218,7 +218,6 @@ export class ServerWorldStateSynchronizer implements WorldStateSynchronizer { const encoded = Buffer.from(hex.length % 2 === 1 ? '0' + hex : hex, 'hex'); await this.db.put(DB_KEY_BLOCK_NUMBER, encoded); - this.log.debug(`Committed current L2 block number ${this.currentL2BlockNum} to db`); } private async restoreCurrentL2BlockNumber() {