In Perl you can:
print STDERR "bla bla bla";
…and Apache will dump it to /etc/httpd/logs/error_log.
But what if I want to send some error/warning messages to a different log file?
How can I create a function to do this in Perl?
print MYLOGFILE "bla bla bla"
…to render to /logs/my_favorite_log?
Use Log::Trivial