From 7e9c51bfa96ab6b74f77fec8d6c4699e4e1fd1fc Mon Sep 17 00:00:00 2001 From: Steve Mokris Date: Mon, 12 Jul 2021 17:13:01 -0400 Subject: [PATCH] Clarify the log message when there's an error parsing an event's timezone --- lib/Event.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Event.php b/lib/Event.php index e4e43107..77ece544 100644 --- a/lib/Event.php +++ b/lib/Event.php @@ -698,7 +698,7 @@ public function toiCalendar($calendar, $includeFiles = true) } $params['TZID'] = $this->timezone; } catch (Horde_Exception $e) { - Horde::log('Unable to locate the tz database.', 'WARN'); + Horde::log('Unable to parse timezone for event ID ' . $this->_id . ': ' . $e, 'WARN'); } }