diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-08-30 01:49:33 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-08-30 01:49:33 -0400 |
commit | ca1f639fd6d6da116fa9f61186bf13a84168af78 (patch) | |
tree | dafda2e327b908c2e69395fcfdd9e282a758722f /classes | |
parent | 439c14d98628fd3c7ff774e6f8334bb71663efea (diff) |
log transport when claiming a notice
darcs-hash:20080830054933-84dde-58cc7aa6947612cda9987d532d85d9dd81e32410.gz
Diffstat (limited to 'classes')
-rw-r--r-- | classes/Queue_item.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/Queue_item.php b/classes/Queue_item.php index 6b4f5c642..14d2e34b5 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); |