Tired of the /n (new line) in your error logs? Run this command to format your errors logs as the logs pipe out. Tested and works with most linux based systems such as Ubuntu, Redhat etc.
[code]
tail -f /var/log/apache2/error.log | perl -pe ‘BEGIN {$| = 1; }; s/\[error\]\s+\[client.*?\]\s+//; s/, referer:.*//’ | perl -pe ‘BEGIN {$| = 1;}; s/\\n/\n/g;’
[/code]