Skip to content
Merged
Show file tree
Hide file tree
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: 0 additions & 3 deletions espresso/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,6 @@ services:
- --l1.http-poll-interval=1s
- --l1.epoch-poll-interval=1s
- --p2p.disable=true
- --log.level=debug

op-node-verifier:
build:
Expand Down Expand Up @@ -263,7 +262,6 @@ services:
- --l1.http-poll-interval=1s
- --l1.epoch-poll-interval=1s
- --p2p.disable=true
- --log.level=debug

caff-node:
build:
Expand Down Expand Up @@ -308,7 +306,6 @@ services:
- --l1.trustrpc=true
- --rpc.enable-admin=true
- --espresso.poll-interval=500ms
- --log.level=debug
- --p2p.disable=true
- --l1.http-poll-interval=1s
- --l1.epoch-poll-interval=1s
Expand Down
4 changes: 3 additions & 1 deletion op-node/rollup/status/status.go
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,9 @@ func (st *StatusTracker) OnEvent(ev event.Event) bool {
st.log.Debug("Local safe head updated", "local_safe", x.Ref)
st.data.LocalSafeL2 = x.Ref
case engine.CrossSafeUpdateEvent:
st.log.Debug("Cross safe head updated", "cross_safe", x.CrossSafe, "local_safe", x.LocalSafe)
// TODO: Fix upstream compatibility for logs.
// <https://app.asana.com/1/1208976916964769/project/1209392461754458/task/1211175327473209?focus=true>
st.log.Info("Cross safe head updated", "cross_safe", x.CrossSafe, "local_safe", x.LocalSafe)
st.data.SafeL2 = x.CrossSafe
st.data.LocalSafeL2 = x.LocalSafe
case derive.DeriverL1StatusEvent:
Expand Down
Loading