Does anybody know an all-purpose logging suite for PHP applications?
By "suite" I mean a lightweight library of logging functions as well as a mature back-end to view them.
The back-end would have to be configurable and show log entries using functions like
Filter by date
Filter by event (Warning, error, custom event)
Filter by category
Filter by user
Filter by associated database record (optional, I could add that myself)
I would like to use such an engine as a "log book" for database records inside my app - e.g. as a diary for a vehicle record, detailing events like "phone call", "buyer interest", "accident", "repair", "theft/damage"....)
The possibility to export log events through the PHP library (to show an event log within the app) is mandatory. RSS / XML export would also be nice.
I'm doing this myself at the moment inside the application. I've never seen anything like this so I realize it's a long shot, but I'm curious to seewhether there is any third party solution to this very common task.