I'm trying to figure out the best way to do error logging in rails using a database (in this case MySQL) as a backend.
It looks like the two popular logging frameworks within rails are the built-in Logger framework and Log4r.
However, as far as I can tell, neither of these support database logging to a database without writing some custom code (which may or may not be easy -- I just don't want to start down that path if there's already a well-understood solution).
I also found Exception_Logger, but this seems to catch any unhandled exceptions and would more-than-likely be used to augment explicit logging.