Add some delivery logging
This commit is contained in:
parent
8b98c93e90
commit
ec264fcd90
|
@ -265,6 +265,13 @@ class RealtimePlugin extends Plugin
|
||||||
$profile = Profile::staticGet('id', $channel->user_id);
|
$profile = Profile::staticGet('id', $channel->user_id);
|
||||||
}
|
}
|
||||||
if ($notice->inScope($profile)) {
|
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));
|
$timeline = $this->_pathToChannel(array($channel->channel_key));
|
||||||
$this->_publish($timeline, $json);
|
$this->_publish($timeline, $json);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user