Hello! I'm working on mod_perl project and I worry about logging. I don't like to log to Apache's error log. I want to log to file.
open(ERRORLOG, '>>/var/log/my_log'); print ERRORLOG "some text\n"; close ERRORLOG; This bit of code runs in every apache child. I worry abount concurent access to this log file under heavy apache load. Is there any problems on my way? Sergey