From ce82717d623f4f9c7fc9e1becfae94be3c3e6091 Mon Sep 17 00:00:00 2001 From: Simon Diesenreiter Date: Tue, 15 Apr 2025 12:28:34 +0200 Subject: [PATCH] fix: additional debug outputs refs NOISSUE --- song_of_the_day/Program.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/song_of_the_day/Program.cs b/song_of_the_day/Program.cs index daeff0f..7ae2011 100644 --- a/song_of_the_day/Program.cs +++ b/song_of_the_day/Program.cs @@ -17,6 +17,7 @@ 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) {