diff options
author | Brion Vibber <brion@pobox.com> | 2010-01-28 23:08:36 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-01-28 23:08:36 -0800 |
commit | 4d3808a815dd8a020cf17151e4c04a821790169d (patch) | |
tree | 0d07aabf437e7a0ec43dcf5a380535d27595f574 /lib/ombqueuehandler.php | |
parent | e5eca9bd2ce11633e14a840cb93adc6fd3ec8fc0 (diff) |
Fix more fatal errors in queue edge cases
Diffstat (limited to 'lib/ombqueuehandler.php')
-rw-r--r-- | lib/ombqueuehandler.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ombqueuehandler.php b/lib/ombqueuehandler.php index 24896c784..1921c2bac 100644 --- a/lib/ombqueuehandler.php +++ b/lib/ombqueuehandler.php @@ -39,7 +39,7 @@ class OmbQueueHandler extends QueueHandler function handle($notice) { if ($this->is_remote($notice)) { - $this->log(LOG_DEBUG, 'Ignoring remote notice ' . $notice->id); + common_log(LOG_DEBUG, 'Ignoring remote notice ' . $notice->id); return true; } else { require_once(INSTALLDIR.'/lib/omb.php'); |