fix: more debug outputs refs NOISSUE

This commit is contained in:
Simon Diesenreiter 2025-04-15 13:06:39 +02:00
parent 9598965a4a
commit 09acbbefea

View File

@ -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) =>
{