From 1a77c2d9f97924bc4ffc5bf108106c5843b335f6 Mon Sep 17 00:00:00 2001 From: Florian Fl Bauer Date: Tue, 28 Oct 2025 14:09:04 +0100 Subject: [PATCH] Switch some log lines to debug log level Signed-off-by: Florian Fl Bauer --- fn.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fn.go b/fn.go index 07751ea..e8c79fa 100644 --- a/fn.go +++ b/fn.go @@ -34,7 +34,7 @@ func (f *Function) RunFunction(ctx context.Context, req *fnv1.RunFunctionRequest // This loop is fairly complex, but more readable with less abstraction. log := f.log.WithValues("tag", req.GetMeta().GetTag()) - log.Info("Running Function") + log.Debug("Running Function") // TODO(negz): We can probably use a longer TTL if all resources are ready. rsp := response.To(req, response.DefaultTTL) @@ -289,7 +289,7 @@ func (f *Function) RunFunction(ctx context.Context, req *fnv1.RunFunctionRequest } response.SetContextKey(rsp, fncontext.KeyEnvironment, structpb.NewStructValue(v)) - log.Info("Successfully processed patch-and-transform resources", + log.Debug("Successfully processed patch-and-transform resources", "resource-templates", len(input.Resources), "existing-resources", existing, "warnings", warnings,