Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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