Hello, I'm using the following to log error messages from mod_perl to Apache log files : $r->log_error("mymsg");
It produces the following : [Sat Dec 24 09:39:43.933388 2016] [:error] [pid 8015] mymsg I'm a little bit suprised that it does not produce the following : [Sat Dec 24 09:39:43.933388 2016] [:error] [pid 8015] [client 1.2.3.4:32133] mymsg Why don't we have the [client] part with the client IP, as for every Apache error message ? Thank you very much ! Ben