Disable some Logger Info

This commit is contained in:
Akamaru 2020-05-03 19:07:36 +02:00
parent 2bc253ed4f
commit 5437cb2ab2

3
Bot.cs
View File

@ -105,7 +105,8 @@ namespace RSSBot {
} }
public static async void Save() { 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) { foreach (RssBotFeed feed in RssBotFeeds) {
string feedKey = $"{Configuration.RedisHash}:{feed.Url}"; string feedKey = $"{Configuration.RedisHash}:{feed.Url}";