Skip to content

Commit 46cfce4

Browse files
committed
Switch some log lines to debug log level
1 parent 44e715e commit 46cfce4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

fn.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ func (f *Function) RunFunction(ctx context.Context, req *fnv1.RunFunctionRequest
3434
// This loop is fairly complex, but more readable with less abstraction.
3535

3636
log := f.log.WithValues("tag", req.GetMeta().GetTag())
37-
log.Info("Running Function")
37+
log.Debug("Running Function")
3838

3939
// TODO(negz): We can probably use a longer TTL if all resources are ready.
4040
rsp := response.To(req, response.DefaultTTL)
@@ -289,7 +289,7 @@ func (f *Function) RunFunction(ctx context.Context, req *fnv1.RunFunctionRequest
289289
}
290290
response.SetContextKey(rsp, fncontext.KeyEnvironment, structpb.NewStructValue(v))
291291

292-
log.Info("Successfully processed patch-and-transform resources",
292+
log.Debug("Successfully processed patch-and-transform resources",
293293
"resource-templates", len(input.Resources),
294294
"existing-resources", existing,
295295
"warnings", warnings,

0 commit comments

Comments
 (0)