Disable some Logger Info

This commit is contained in:
Akamaru 2020-05-03 19:07:36 +02:00
parent 2bc253ed4f
commit 5437cb2ab2
1 changed files with 2 additions and 1 deletions

3
Bot.cs
View File

@ -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}";