From: Evan Prodromou <evan@prodromou.name>
Date: Sat, 30 Aug 2008 05:49:33 +0000 (-0400)
Subject: log transport when claiming a notice
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=ca1f639fd6d6da116fa9f61186bf13a84168af78;p=quix0rs-gnu-social.git

log transport when claiming a notice

darcs-hash:20080830054933-84dde-58cc7aa6947612cda9987d532d85d9dd81e32410.gz
---

diff --git a/classes/Queue_item.php b/classes/Queue_item.php
index 6b4f5c642e..14d2e34b57 100644
--- a/classes/Queue_item.php
+++ b/classes/Queue_item.php
@@ -38,7 +38,7 @@ class Queue_item extends DB_DataObject
 			# XXX: potential race condition
 			# can we force it to only update if claimed is still NULL
 			# (or old)?
-			common_log(LOG_INFO, 'claiming queue item = ' . $qi->notice_id);
+			common_log(LOG_INFO, 'claiming queue item = ' . $qi->notice_id . ' for transport ' . $transport);
 			$orig = clone($qi);
 			$qi->claimed = common_sql_now();
 			$result = $qi->update($orig);