How to show timezone in the apache 2.4.25 ErrorLog. I have put the ErrorLogFormat in VirtualHost :
ErrorLogFormat "%{cu}t"
But than I only get 2018-02-08 10:02:59.246032
.
Which is the time in the +01:00 time in fact.
In LogFormat it is possible just by %{%Y-%m-%dT%H:%M:%S}t.%{msec_frac}t%{%z}t
which gives 2018-02-08T10:07:46.161+0100
.
When I use the same in ErrorLogFormat I get Thu Feb 08 10:07:46 2018.2018-02-08 10:07:46Thu Feb 08 10:07:46 2018
instead.
Is there a way to show the correct timezone?