From c7e899d547009b32e3d0762c55707cb4b85dcb8f Mon Sep 17 00:00:00 2001 From: Brandon Liu Date: Thu, 7 Dec 2023 10:44:05 +0800 Subject: [PATCH] feat(proposer): optimize proposer logs (#464) Co-authored-by: David --- pkg/rpc/methods.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg/rpc/methods.go b/pkg/rpc/methods.go index c2c83e693..129db8b50 100644 --- a/pkg/rpc/methods.go +++ b/pkg/rpc/methods.go @@ -99,7 +99,8 @@ func (c *Client) WaitTillL2ExecutionEngineSynced(ctx context.Context) error { } if progress.isSyncing() { - log.Info("L2 execution engine is syncing", "progress", progress) + log.Info("L2 execution engine is syncing", "CurrentBlockID", progress.CurrentBlockID, + "HighestBlockID", progress.HighestBlockID, "progress", progress.SyncProgress) return errSyncing }