[#240] logs: Factor out common service log messages

Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
This commit is contained in:
Evgenii Stratonikov 2023-04-13 15:51:36 +03:00 committed by fyrchik
parent 0e31c12e63
commit cffcc7745e
15 changed files with 53 additions and 64 deletions

View file

@ -18,7 +18,7 @@ func (exec *execCtx) executeOnContainer(ctx context.Context) {
lookupDepth := exec.netmapLookupDepth()
exec.log.Debug(logs.SearchTryingToExecuteInContainer,
exec.log.Debug(logs.TryingToExecuteInContainer,
zap.Uint64("netmap lookup depth", lookupDepth),
)
@ -49,7 +49,7 @@ func (exec *execCtx) executeOnContainer(ctx context.Context) {
}
func (exec *execCtx) processCurrentEpoch(ctx context.Context) bool {
exec.log.Debug(logs.SearchProcessEpoch,
exec.log.Debug(logs.ProcessEpoch,
zap.Uint64("number", exec.curProcEpoch),
)
@ -64,7 +64,7 @@ func (exec *execCtx) processCurrentEpoch(ctx context.Context) bool {
for {
addrs := traverser.Next()
if len(addrs) == 0 {
exec.log.Debug(logs.SearchNoMoreNodesAbortPlacementIteration)
exec.log.Debug(logs.NoMoreNodesAbortPlacementIteration)
break
}
@ -77,7 +77,7 @@ func (exec *execCtx) processCurrentEpoch(ctx context.Context) bool {
defer wg.Done()
select {
case <-ctx.Done():
exec.log.Debug(logs.SearchInterruptPlacementIterationByContext,
exec.log.Debug(logs.InterruptPlacementIterationByContext,
zap.String("error", ctx.Err().Error()))
return
default:
@ -87,7 +87,7 @@ func (exec *execCtx) processCurrentEpoch(ctx context.Context) bool {
client.NodeInfoFromNetmapElement(&info, addrs[i])
exec.log.Debug(logs.SearchProcessingNode, zap.String("key", hex.EncodeToString(addrs[i].PublicKey())))
exec.log.Debug(logs.ProcessingNode, zap.String("key", hex.EncodeToString(addrs[i].PublicKey())))
c, err := exec.svc.clientConstructor.get(info)
if err != nil {

View file

@ -81,7 +81,7 @@ func (exec *execCtx) initEpoch() bool {
exec.status = statusUndefined
exec.err = err
exec.log.Debug(logs.SearchCouldNotGetCurrentEpochNumber,
exec.log.Debug(logs.CouldNotGetCurrentEpochNumber,
zap.String("error", err.Error()),
)

View file

@ -24,7 +24,7 @@ func (s *Service) Search(ctx context.Context, prm Prm) error {
}
func (exec *execCtx) execute(ctx context.Context) {
exec.log.Debug(logs.SearchServingRequest)
exec.log.Debug(logs.ServingRequest)
// perform local operation
exec.executeLocal()
@ -36,11 +36,11 @@ func (exec *execCtx) analyzeStatus(ctx context.Context, execCnr bool) {
// analyze local result
switch exec.status {
default:
exec.log.Debug(logs.SearchOperationFinishedWithError,
exec.log.Debug(logs.OperationFinishedWithError,
zap.String("error", exec.err.Error()),
)
case statusOK:
exec.log.Debug(logs.SearchOperationFinishedSuccessfully)
exec.log.Debug(logs.OperationFinishedSuccessfully)
}
if execCnr {