Skip to content
This repository has been archived by the owner on May 11, 2024. It is now read-only.

feat(proposer): optimze log #464

Merged
merged 4 commits into from
Dec 7, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pkg/rpc/methods.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down