Skip to content

Commit

Permalink
Merge pull request #5 from smokris/clarify-timezone-error
Browse files Browse the repository at this point in the history
Clarify the log message when there's an error parsing an event's timezone
  • Loading branch information
ralflang authored Mar 28, 2024
2 parents af5a9df + 7e9c51b commit 199cc73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Event.php
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,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');
}
}

Expand Down

0 comments on commit 199cc73

Please sign in to comment.