Add some delivery logging

This commit is contained in:
Evan Prodromou 2012-06-17 10:10:52 -04:00
parent 8b98c93e90
commit ec264fcd90
1 changed files with 7 additions and 0 deletions

View File

@ -265,6 +265,13 @@ class RealtimePlugin extends Plugin
$profile = Profile::staticGet('id', $channel->user_id);
}
if ($notice->inScope($profile)) {
$this->log(LOG_INFO,
sprintf(_("Delivering notice %d to channel (%s, %s, %s) for user '%s'"),
$notice->id,
$channel->action,
$channel->arg1,
$channel->arg2,
($profile) ? ($profile->nickname) : "<public>"));
$timeline = $this->_pathToChannel(array($channel->channel_key));
$this->_publish($timeline, $json);
}