PHP 7.2. When I use:
error_log('test');
in the error log I see an entry:
[31-Jan-2020 20:05:28 UTC] test
(note the date/time in the beginning of the line)
When I use:
error_log('test',3, 'my_error_log');
I just got:
test
in the 'my_error_log' file - there is no date time at the beginning. Even new lines are not added automatically.
Why two error_log calls produce different output? How can I control it?