Skip to content
This repository has been archived by the owner on Jul 3, 2020. It is now read-only.

Commit

Permalink
Added Log Messages to show program flow.
Browse files Browse the repository at this point in the history
  • Loading branch information
bofirial committed Jun 12, 2017
1 parent 6ec9281 commit d811775
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Melody49Notifier/Melody49Notifier.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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}.");
}
Expand Down

0 comments on commit d811775

Please sign in to comment.