diff --git a/Melody49Notifier/Melody49Notifier.cs b/Melody49Notifier/Melody49Notifier.cs index 0a95c65..99f9f8d 100644 --- a/Melody49Notifier/Melody49Notifier.cs +++ b/Melody49Notifier/Melody49Notifier.cs @@ -17,8 +17,13 @@ public static void Run([TimerTrigger("0 0 8-18 * * FRI")]TimerInfo myTimer, Trac if (TheaterScheduleHasUpdated(log, out TheaterSchedule currentTheaterSchedule)) { + log.Info($"Theater Schedule has updated. Sending Notifications."); SendNotification(log, currentTheaterSchedule); } + else + { + log.Info($"Theater Schedule has not updated."); + } log.Info($"C# Timer trigger function completed at: {DateTime.Now}."); }