Reputation: 48477
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
Upvotes: 10
Views: 16622
Reputation: 360872
error_log()
can write to arbitrary files...
error_log('Something blew up!', 3, '/some/path/debug.txt');
Upvotes: 5