From 11cc7f4f06e7673290b6c9c5d235884ed42fae0e Mon Sep 17 00:00:00 2001 From: Sean Cunningham Date: Tue, 28 Oct 2025 15:36:22 -0400 Subject: [PATCH] Switch noisy log messages to debug. --- pkg/compiler/compiler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/compiler/compiler.go b/pkg/compiler/compiler.go index b07db66..97b3d7c 100644 --- a/pkg/compiler/compiler.go +++ b/pkg/compiler/compiler.go @@ -197,7 +197,7 @@ func compile(o compilerOptsT, tree *ast.AstT, scope string) (ObjsT, error) { sortObjs(outObjs, schema.NodeTypeSet) for _, obj := range outObjs { - log.Info(). + log.Debug(). Str("abstract_type", obj.AbstractType.String()). Str("abstract_address", obj.Address.String()). Str("object_type", obj.ObjectType.String()).