Skip to content

Commit 85974cf

Browse files
committed
fix(venom): update some logs level
Signed-off-by: Yvonnick Esnault <yvonnick.esnault@ovhcloud.com>
1 parent fadb47b commit 85974cf

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

process_files.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ func uniq(stringSlice []string) []string {
6363

6464
func (v *Venom) readFiles(ctx context.Context, filesPath []string) (err error) {
6565
for _, filePath := range filesPath {
66-
Info(ctx, "Reading %v", filePath)
66+
Debug(ctx, "Reading %v", filePath)
6767
btes, err := os.ReadFile(filePath)
6868
if err != nil {
6969
return errors.Wrapf(err, "unable to read file %q", filePath)

venom.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ func (v *Venom) registerUserExecutors(ctx context.Context) error {
252252
executorsPath := v.getUserExecutorFilesPath(ctx, vars)
253253

254254
for _, f := range executorsPath {
255-
Info(ctx, "Reading %v", f)
255+
Debug(ctx, "Reading %v", f)
256256
content, err := os.ReadFile(f)
257257
if err != nil {
258258
return errors.Wrapf(err, "unable to read file %q", f)

0 commit comments

Comments
 (0)