From 6b1f391306b79c3083663d87faee4dc8fa3fea5f Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 27 Aug 2008 20:45:03 -0400 Subject: $this->log to common_log in Queue_item darcs-hash:20080828004503-84dde-c406172d750d0a5452d5cc62ecd7b27db381c575.gz --- classes/Queue_item.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'classes') diff --git a/classes/Queue_item.php b/classes/Queue_item.php index 862511883..6b4f5c642 100644 --- a/classes/Queue_item.php +++ b/classes/Queue_item.php @@ -38,15 +38,15 @@ class Queue_item extends DB_DataObject # XXX: potential race condition # can we force it to only update if claimed is still NULL # (or old)? - $this->log(LOG_INFO, 'claiming queue item = ' . $qi->notice_id); + common_log(LOG_INFO, 'claiming queue item = ' . $qi->notice_id); $orig = clone($qi); $qi->claimed = common_sql_now(); $result = $qi->update($orig); if ($result) { - $this->log(LOG_INFO, 'claim succeeded.'); + common_log(LOG_INFO, 'claim succeeded.'); return $qi; } else { - $this->log(LOG_INFO, 'claim failed.'); + common_log(LOG_INFO, 'claim failed.'); } } $qi = NULL; -- cgit v1.2.3-54-g00ecf