I'm working with logging in PHP with Pear, and I get into a standard problem: can I use file-based logging when the DB is not available? I don't mind if it's slow due to concurrency issues, but it cannot fail to work due to multiple, simultaneous hits.

I'm asking this question in general (for other web technologies) and specifically for Pear for PHP.

Thanks!

link|improve this question

feedback

2 Answers

up vote 6 down vote accepted

Generally, logging to the file system is a good fall back if you can't connect to your database. Simultaneous hits shouldn't be a problem (locks...). If you already have your logs adapted for a database perhaps the easiest way to go would be to use sqlite as a fall back.

Another way would be to email log events in this case, in addition to not loosing them this approach should make you aware of your database problem faster.

link|improve this answer
nice! I like the SqlLite idea AND the email idea. – Yar Oct 19 '08 at 1:45
2  
I'm not much of a strong OO advocate but this seems like a great case for hiding logging behind an interface and having the interface switch out it's logging provider (email/sqllite/db/file) – Graphain May 13 '09 at 6:31
feedback

You can pass an existing database object into the singleton method of Log - if you don't have a database you can revert to alternative logging methods (or good old user_error())

require_once 'DB.php';
$db = &DB::connect('pgsql://jon@localhost+unix/logs');

$conf['db'] = $db;
$logger = &Log::singleton('sql', 'log_table', 'ident', $conf);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.