summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlezvous.ca>2008-07-04 04:32:16 -0400
committerEvan Prodromou <evan@controlezvous.ca>2008-07-04 04:32:16 -0400
commitcec671443d7bb420d07fef72a77ac45d10cb03d4 (patch)
tree331a98702369443543173b22419501023f105379 /lib
parent856f10baba88299a6a814e3ec8589081703ea864 (diff)
debugging info for queueing notices
darcs-hash:20080704083216-34904-b170843a5fa73cb36ffb900be6f1bb56a08515d6.gz
Diffstat (limited to 'lib')
-rw-r--r--lib/util.php18
1 files changed, 12 insertions, 6 deletions
diff --git a/lib/util.php b/lib/util.php
index 60242eaf7..b7e78d3bb 100644
--- a/lib/util.php
+++ b/lib/util.php
@@ -866,7 +866,7 @@ function common_save_replies($notice) {
function common_broadcast_notice($notice, $remote=false) {
if (common_config('queue', 'enabled')) {
# Do it later!
- return common_enqueue_notice($notice);
+ common_enqueue_notice($notice);
} else {
return common_real_broadcast($notice, $remote);
}
@@ -875,17 +875,23 @@ function common_broadcast_notice($notice, $remote=false) {
# Stick the notice on the queue
function common_enqueue_notice($notice) {
- common_log(LOG_INFO, 'start queueing notice ID = ' . $notice->id);
+ common_log(LOG_DEBUG, 'start queueing notice ID = ' . $notice->id);
$qi = new Queue_item();
+ common_log(LOG_DEBUG, 'got a new qi object');
$qi->notice_id = $notice->id;
- $qi->created = DB_DataObject_Cast::dateTime();
- $result = $qi->insert();
- if ($result === FALSE) {
+ common_log(LOG_DEBUG, 'got a new id:' . $qi->notice_id);
+ $qi->created = $notice->created;
+ common_log(LOG_DEBUG, 'set created date');
+ common_log(LOG_DEBUG, print_r($qi, true));
+ $result = $qi->insert();
+ common_log(LOG_DEBUG, 'inserted');
+ if (!$result) {
$last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
common_log(LOG_ERROR, 'DB error inserting queue item: ' . $last_error->message);
return false;
}
- common_log(LOG_INFO, 'complete queueing notice ID = ' . $notice->id);
+ common_log(LOG_DEBUG, print_r($qi, true));
+ common_log(LOG_DEBUG, 'complete queueing notice ID = ' . $notice->id);
return $result;
}