From c920c823aac70d8ac89828dde74b4091a8ae4c93 Mon Sep 17 00:00:00 2001 From: Csaba Kiraly Date: Mon, 13 Oct 2025 19:11:00 +0200 Subject: [PATCH] eth/catalyst: use info instead of warn on enabling Engine API This is normal, nothing to warn about. Signed-off-by: Csaba Kiraly --- eth/catalyst/api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth/catalyst/api.go b/eth/catalyst/api.go index 6dfe24f729..ac6f54327e 100644 --- a/eth/catalyst/api.go +++ b/eth/catalyst/api.go @@ -47,7 +47,7 @@ import ( // Register adds the engine API to the full node. func Register(stack *node.Node, backend *eth.Ethereum) error { - log.Warn("Engine API enabled", "protocol", "eth") + log.Info("Engine API enabled", "protocol", "eth") stack.RegisterAPIs([]rpc.API{ { Namespace: "engine",