Skip to content

Commit

Permalink
Use warn instead of info if execution client is syncing
Browse files Browse the repository at this point in the history
  • Loading branch information
nflaig committed Jul 18, 2023
1 parent 00134c1 commit 88775ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/beacon-node/src/execution/engine/http.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit 88775ca

Please sign in to comment.