From 0135b89f0134bdaa47510c78cc49098a69785d82 Mon Sep 17 00:00:00 2001 From: simon Date: Wed, 21 May 2025 04:33:24 -0700 Subject: [PATCH] reduce number of emitted logs --- song_of_the_day/Program.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/song_of_the_day/Program.cs b/song_of_the_day/Program.cs index 04fbd21..b201cb3 100644 --- a/song_of_the_day/Program.cs +++ b/song_of_the_day/Program.cs @@ -27,7 +27,6 @@ userCheckTimer.OnOccurence += async (s, ea) => var needsSaving = false; foreach (var memberId in memberList) { - Console.WriteLine("found member: " + memberId); var foundUser = dci.Users.Where(u => u.SignalMemberId == memberId).SingleOrDefault(); if (foundUser == null) {