diff --git a/src/getEvents.php b/src/getEvents.php index c3b4fbb..46a3616 100644 --- a/src/getEvents.php +++ b/src/getEvents.php @@ -219,7 +219,7 @@ function toGerman(string $day): ?string * */ function printEventList(): bool { - error_log("getEvents called"); + // error_log("getEvents called"); date_default_timezone_set("Europe/Berlin"); $today_datetime = new DateTime(); date_time_set($today_datetime, 0, 0, 0, 0); @@ -239,7 +239,7 @@ function printEventList(): bool { $eventlist = grabEvents($vcalendar); if ($eventlist == null) { - error_log("gabEvent returns null"); + error_log("grabEvent returns null"); return false; } elseif (count($eventlist) == 0) { @@ -289,7 +289,7 @@ function printEventList(): bool { foreach ($next_events as $event) { printEvent($event, $date_helper); } - error_log("getEvents successful terminated"); + // error_log("getEvents successful terminated"); return true; }