From 9b66f1d6c0c6a046b3b84c0eb86ce3597fd6baaa Mon Sep 17 00:00:00 2001 From: Jinsuk Park Date: Wed, 14 Aug 2024 02:47:45 +0900 Subject: [PATCH] cleanup debug logs --- op-node/node/node.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/op-node/node/node.go b/op-node/node/node.go index 7db4aa467bd4..f6370999a4c1 100644 --- a/op-node/node/node.go +++ b/op-node/node/node.go @@ -620,7 +620,7 @@ func (n *OpNode) PublishL2Attributes(ctx context.Context, attrs *derive.Attribut n.log.Warn("failed to marshal payload attributes", "err", err) return err } - n.log.Info("Publishing execution payload attributes on event stream", "attrs", builderAttrs, "json", string(jsonBytes)) + n.log.Debug("Publishing execution payload attributes on event stream", "attrs", builderAttrs, "json", string(jsonBytes)) n.httpEventStream.Publish("payload_attributes", &sse.Event{Data: jsonBytes}) return nil }