From be6e8c1b873c8f135cd6696262bfd0cb1d132e53 Mon Sep 17 00:00:00 2001 From: Mikhail Kuznetsov Date: Thu, 22 May 2025 09:20:33 +1000 Subject: [PATCH] =?UTF-8?q?feat(bll):=20=D0=9F=D0=BE=D0=BD=D0=B8=D0=B6?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D1=83=D1=80=D0=BE=D0=B2=D0=BD=D1=8F?= =?UTF-8?q?=20=D0=B6=D1=83=D1=80=D0=BD=D0=B0=D0=BB=D0=B8=D1=80=D0=BE=D0=B2?= =?UTF-8?q?=D0=B0=D0=BD=D0=B8=D1=8F=20=D0=B4=D0=BB=D1=8F=20=D1=81=D0=BE?= =?UTF-8?q?=D0=BE=D0=B1=D1=89=D0=B5=D0=BD=D0=B8=D1=8F=20=D1=81=20=D1=82?= =?UTF-8?q?=D0=B5=D0=BA=D1=81=D1=82=D0=BE=D0=BC=20=D1=81=D0=BE=D0=BE=D0=B1?= =?UTF-8?q?=D1=89=D0=B5=D0=BD=D0=B8=D1=8F=20=D0=B2=20MqService?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PARR.BLL/Services/Implementations/MqService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PARR.BLL/Services/Implementations/MqService.cs b/PARR.BLL/Services/Implementations/MqService.cs index 5dd994ee..3f00dfe7 100644 --- a/PARR.BLL/Services/Implementations/MqService.cs +++ b/PARR.BLL/Services/Implementations/MqService.cs @@ -134,7 +134,7 @@ namespace PARR.BLL.Services.Implementations consumer.Received += async (ch, ea) => { var content = Encoding.UTF8.GetString(ea.Body.ToArray()); - logger.LogInformation($"Получено сообщение: {content}"); + logger.LogDebug($"Получено сообщение: {content}"); await messageHandler.Invoke(content);