From 5437cb2ab2bd13fb437cbbc2d3dcf0b278d5b3d9 Mon Sep 17 00:00:00 2001 From: Akamaru Date: Sun, 3 May 2020 19:07:36 +0200 Subject: [PATCH] Disable some Logger Info --- Bot.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Bot.cs b/Bot.cs index 82aecad..9841b7c 100644 --- a/Bot.cs +++ b/Bot.cs @@ -105,7 +105,8 @@ namespace RSSBot { } public static async void Save() { - if (RssBotFeeds.Count > 0) Logger.Info(/* "Speichere Daten..." */); + if (RssBotFeeds.Count > 0) + /* Logger.Info("Speichere Daten..."); */ foreach (RssBotFeed feed in RssBotFeeds) { string feedKey = $"{Configuration.RedisHash}:{feed.Url}";