From 498a183be5c5cce0c12931bbd5cddd04fa0dd9bf Mon Sep 17 00:00:00 2001 From: Sergey Karmanov Date: Tue, 14 Oct 2025 23:18:08 +0300 Subject: [PATCH] =?UTF-8?q?=D0=97=D0=B0=D0=B3=D0=BB=D1=83=D1=88=D0=B8?= =?UTF-8?q?=D0=BB=20Quartz?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SfeduSchedule/Program.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/SfeduSchedule/Program.cs b/SfeduSchedule/Program.cs index 93497b3..1b5b339 100644 --- a/SfeduSchedule/Program.cs +++ b/SfeduSchedule/Program.cs @@ -37,6 +37,7 @@ var pluginsPath = Path.Combine(dataDirectory, "Plugins"); builder.Logging.ClearProviders(); builder.Logging.AddConsole(); +builder.Logging.AddFilter("Quartz", LogLevel.Warning); if (!string.IsNullOrEmpty(tgChatId) && !string.IsNullOrEmpty(tgToken)) builder.Logging.AddTelegram(options => { @@ -48,7 +49,8 @@ if (!string.IsNullOrEmpty(tgChatId) && !string.IsNullOrEmpty(tgToken)) { { "Default", LogLevel.Error }, { "SfeduSchedule.Jobs.UpdateJwtJob", LogLevel.Information }, - { "Program", LogLevel.Information } + { "Program", LogLevel.Information }, + { "Quartz", LogLevel.Warning } }; });