Skip to content

Commit

Permalink
fix: usershareprovider log level
Browse files Browse the repository at this point in the history
  • Loading branch information
fschade committed Oct 9, 2024
1 parent 2a6fdbe commit dfbf349
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions changelog/unreleased/fix-log-level.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Bugfix: Log levels

We changed the following log levels:

- `ERROR` to `DEBUG` in `internal/grpc/services/usershareprovider` when getting received shares

https://github.com/cs3org/reva/pull/4881
Original file line number Diff line number Diff line change
Expand Up @@ -485,7 +485,7 @@ func (s *service) GetReceivedShare(ctx context.Context, req *collaboration.GetRe

share, err := s.sm.GetReceivedShare(ctx, req.Ref)
if err != nil {
log.Err(err).Msg("error getting received share")
log.Debug().Err(err).Msg("error getting received share")
switch err.(type) {
case errtypes.NotFound:
return &collaboration.GetReceivedShareResponse{
Expand Down

0 comments on commit dfbf349

Please sign in to comment.