alert to what transport we're checking for

This commit is contained in:
Evan Prodromou 2009-04-23 10:08:26 +00:00
parent a3e727823d
commit 7c383dc1d4
1 changed files with 10 additions and 11 deletions

View File

@ -80,8 +80,8 @@ class QueueHandler extends Daemon
if (!$this->start()) {
return false;
}
$this->log(LOG_INFO, 'checking for queued notices');
$transport = $this->transport();
$this->log(LOG_INFO, 'checking for queued notices for "' . $transport . '"');
do {
$qi = Queue_item::top($transport);
if ($qi) {
@ -143,4 +143,3 @@ class QueueHandler extends Daemon
common_log($level, $this->class_name() . ' ('. $this->get_id() .'): '.$msg);
}
}