diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/omb.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/omb.php b/lib/omb.php index d4f53c332..28bffea13 100644 --- a/lib/omb.php +++ b/lib/omb.php @@ -126,8 +126,12 @@ function omb_broadcast_remote_subscribers($notice) { while ($rp->fetch()) { if (!$posted[$rp->postnoticeurl]) { + common_log(LOG_DEBUG, 'Posting to ' . $rp->postnoticeurl); if (omb_post_notice_keys($notice, $rp->postnoticeurl, $rp->token, $rp->secret)) { + common_log(LOG_DEBUG, 'Finished to ' . $rp->postnoticeurl); $posted[$rp->postnoticeurl] = TRUE; + } else { + common_log(LOG_DEBUG, 'Failed posting to ' . $rp->postnoticeurl); } } } |