From 88775ca604f9faea30ff198910d07f19db2ccd33 Mon Sep 17 00:00:00 2001 From: Nico Flaig Date: Tue, 18 Jul 2023 10:48:47 +0200 Subject: [PATCH] Use warn instead of info if execution client is syncing --- packages/beacon-node/src/execution/engine/http.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/beacon-node/src/execution/engine/http.ts b/packages/beacon-node/src/execution/engine/http.ts index 0bd5e0693bc6..eec930535f7b 100644 --- a/packages/beacon-node/src/execution/engine/http.ts +++ b/packages/beacon-node/src/execution/engine/http.ts @@ -437,7 +437,7 @@ export class ExecutionEngineHttp implements IExecutionEngine { this.logger.info("Execution client is synced"); break; case ExecutionEngineState.SYNCING: - this.logger.info("Execution client is syncing"); + this.logger.warn("Execution client is syncing"); break; case ExecutionEngineState.AUTH_FAILED: this.logger.error("Execution client authentication failed");