From: Evan Prodromou Date: Thu, 28 Aug 2008 00:45:03 +0000 (-0400) Subject: $this->log to common_log in Queue_item X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=6b1f391306b79c3083663d87faee4dc8fa3fea5f;p=quix0rs-gnu-social.git $this->log to common_log in Queue_item darcs-hash:20080828004503-84dde-c406172d750d0a5452d5cc62ecd7b27db381c575.gz --- diff --git a/classes/Queue_item.php b/classes/Queue_item.php index 862511883b..6b4f5c642e 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;