Closed mokraemer closed 4 months ago
This issue is stale because it has been open 30 days with no activity. Comment or remove the stale label. Otherwise, it will be closed in 7 days.
still relevant
This issue is stale because it has been open 30 days with no activity. Comment or remove the stale label. Otherwise, it will be closed in 7 days.
still relevant
the logger timezone can be configured via the 'tz' option:
'logger' => [
'tz' => 'America/Los_Angeles',
// [...]
]
see https://www.php.net/manual/de/function.date-default-timezone-set.php for supported timezones...
we could also think about adding a "detect/auto" option (ini_get('date.timezone')).
sure. In php it is mandatory to set the timezone
php -r "echo ini_get('date.timezone');" Europe/Berlin
At the moment loggin is done with a timestamp set to UTC. This is irritating, as system logs are shown/converted to the local time. At least the default should be local time, not UTC