Is there any good log library for message, warning and errors flogging for PHP?AFAIK error_log
is only used for logging errors but i need to store also debug messages.
And should work with CLI. Thanks
error_log()
can write to arbitrary files...
error_log('Something blew up!', 3, '/some/path/debug.txt');
Personally I appreciate the flexibility of log4php