Dmitrii Stepanov
692749dba1
Some checks failed
DCO action / DCO (pull_request) Failing after 1m30s
Tests and linters / Run gofumpt (pull_request) Successful in 1m26s
Vulncheck / Vulncheck (pull_request) Successful in 2m11s
Pre-commit hooks / Pre-commit (pull_request) Successful in 2m25s
Build / Build Components (pull_request) Successful in 2m29s
Tests and linters / Lint (pull_request) Failing after 2m26s
Tests and linters / gopls check (pull_request) Successful in 2m43s
Tests and linters / Staticcheck (pull_request) Successful in 2m56s
Tests and linters / Tests (pull_request) Successful in 4m22s
Tests and linters / Tests with -race (pull_request) Successful in 5m58s
Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
27 lines
889 B
Go
27 lines
889 B
Go
package util
|
|
|
|
import (
|
|
"context"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/internal/logs"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/network"
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/util/logger"
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
// LogServiceError writes error message of object service to provided logger.
|
|
func LogServiceError(l *logger.Logger, req string, node network.AddressGroup, err error) {
|
|
l.Error(context.Background(), logs.UtilObjectServiceError,
|
|
zap.String("node", network.StringifyGroup(node)),
|
|
zap.String("request", req),
|
|
zap.String("error", err.Error()),
|
|
)
|
|
}
|
|
|
|
// LogWorkerPoolError writes debug error message of object worker pool to provided logger.
|
|
func LogWorkerPoolError(l *logger.Logger, req string, err error) {
|
|
l.Error(context.Background(), logs.UtilCouldNotPushTaskToWorkerPool,
|
|
zap.String("request", req),
|
|
zap.String("error", err.Error()),
|
|
)
|
|
}
|