Skip to content

Commit

Permalink
chore: change log-level to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
mattagohni committed Feb 26, 2025
1 parent eb45288 commit 438ff76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fn.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const (

// RunFunction runs the Function.
func (f *Function) RunFunction(_ context.Context, req *fnv1.RunFunctionRequest) (*fnv1.RunFunctionResponse, error) {
f.log.Info("Running Function", "tag", req.GetMeta().GetTag())
f.log.Debug("Running Function", "tag", req.GetMeta().GetTag())

rsp := response.To(req, response.DefaultTTL)

Expand Down Expand Up @@ -289,7 +289,7 @@ func (f *Function) RunFunction(_ context.Context, req *fnv1.RunFunctionRequest)
rsp.Requirements = requirements
}

f.log.Info("Successfully composed desired resources", "source", in.Source, "count", len(objs))
f.log.Debug("Successfully composed desired resources", "source", in.Source, "count", len(objs))

return rsp, nil
}
Expand Down

0 comments on commit 438ff76

Please sign in to comment.