Skip to content

Commit 0a73130

Browse files
authored
clean up ListWithRegex log (#5450)
1 parent 1e04aa3 commit 0a73130

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Enhancement: clean up ListWithRegex log
2+
3+
https://github.com/cs3org/reva/pull/5450

pkg/eosclient/eosgrpc/file_ops.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ func (c *Client) List(ctx context.Context, auth eosclient.Authorization, path st
309309
func (c *Client) ListWithRegex(ctx context.Context, auth eosclient.Authorization, path string, depth uint, regex string) ([]*eosclient.FileInfo, error) {
310310
log := appctx.GetLogger(ctx)
311311
result, err := c.list(ctx, auth, path, regex, depth)
312-
log.Info().Str("path", path).Str("regex", regex).Any("results", result).Msg("ListWithRegex")
312+
log.Info().Str("path", path).Str("regex", regex).Msg("ListWithRegex")
313313

314314
return result, err
315315
}

0 commit comments

Comments
 (0)