frostfs-node/pkg/local_object_storage
Aleksey Savchuk f0c43c8d80
[#1502] Use zap.Error for logging errors
Use `zap.Error` instead of `zap.String` for logging errors: change all expressions like
`zap.String("error", err.Error())` or `zap.String("err", err.Error())` to `zap.Error(err)`.
Leave similar expressions with other messages unchanged, for example,
`zap.String("last_error", lastErr.Error())` or `zap.String("reason", ctx.Err().Error())`.

This change was made by applying the following patch:
```diff
@@
var err expression
@@
-zap.String("error", err.Error())
+zap.Error(err)

@@
var err expression
@@
-zap.String("err", err.Error())
+zap.Error(err)
```

Signed-off-by: Aleksey Savchuk <a.savchuk@yadro.com>
2024-12-16 11:13:42 +03:00
..
blobovnicza [#1437] node: Fix contextcheck linter 2024-11-13 10:36:10 +03:00
blobstor [#1502] Use zap.Error for logging errors 2024-12-16 11:13:42 +03:00
engine [#1502] Use zap.Error for logging errors 2024-12-16 11:13:42 +03:00
internal [#1437] node: Fix contextcheck linter 2024-11-13 10:36:10 +03:00
metabase [#1510] metabase/test: Fix BenchmarkListWithCursor 2024-12-13 13:19:15 +03:00
metrics [#1367] fstree: Add IterateInfo method 2024-09-12 15:06:33 +03:00
pilorama [#1525] pilorama: Use AppendUint* helpers from stdlib 2024-11-28 09:40:20 +03:00
shard [#1502] Use zap.Error for logging errors 2024-12-16 11:13:42 +03:00
util [#1103] node: Implement Get\Head requests for EC object 2024-04-24 18:15:53 +03:00
writecache [#1437] node: Fix contextcheck linter 2024-11-13 10:36:10 +03:00