Refactor logging messages for consistency and clarity
CI / Backend (build + test) (push) Successful in 1m14s
CI / Frontend (lint + typecheck + build) (push) Successful in 43s

- Updated various logging messages across the application to replace Russian text with English equivalents, ensuring consistency in error and information logs.
- Enhanced clarity in log messages related to Telegram bot operations, user management commands, and health check services, improving overall traceability and understanding of application behavior.
This commit is contained in:
Leonid Pershin
2026-07-02 15:04:10 +03:00
parent 3cdd3adf5e
commit 48f620b964
10 changed files with 22 additions and 22 deletions
@@ -10,11 +10,11 @@ public sealed class LoggingBehavior<TRequest, TResponse>(ILogger<LoggingBehavior
public async Task<TResponse> Handle(TRequest request, RequestHandlerDelegate<TResponse> next, CancellationToken cancellationToken)
{
var requestName = typeof(TRequest).Name;
logger.LogInformation("Обработка {RequestName}", requestName);
logger.LogInformation("Handling {RequestName}", requestName);
var response = await next();
logger.LogInformation("Обработан {RequestName}", requestName);
logger.LogInformation("Handled {RequestName}", requestName);
return response;
}
}