diff --git a/song_of_the_day/Program.cs b/song_of_the_day/Program.cs index 159ce27..bef9c56 100644 --- a/song_of_the_day/Program.cs +++ b/song_of_the_day/Program.cs @@ -9,6 +9,7 @@ SignalIntegration.Instance = new SignalIntegration(AppConfiguration.Instance.Sig var builder = WebApplication.CreateBuilder(args); +Console.WriteLine("Setting up user check timer"); var userCheckTimer = new CronTimer("*/1 * * * *", "Europe/Vienna", includingSeconds: false); userCheckTimer.OnOccurence += async (s, ea) => { @@ -44,6 +45,7 @@ userCheckTimer.OnOccurence += async (s, ea) => }; userCheckTimer.Start(); +Console.WriteLine("Setting up user intro timer"); var userIntroTimer = new CronTimer("*/1 * * * *", "Europe/Vienna", includingSeconds: false); userIntroTimer.OnOccurence += async (s, ea) => { @@ -65,6 +67,8 @@ userIntroTimer.OnOccurence += async (s, ea) => }; userIntroTimer.Start(); + +Console.WriteLine("Setting up pick of the day timer"); var pickOfTheDayTimer = new CronTimer("0 8 * * *", "Europe/Vienna", includingSeconds: false); pickOfTheDayTimer.OnOccurence += async (s, ea) => {