diff options
Diffstat (limited to 'lib/util.php')
-rw-r--r-- | lib/util.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/util.php b/lib/util.php index 6aff62786..38e24bb25 100644 --- a/lib/util.php +++ b/lib/util.php @@ -839,10 +839,16 @@ function common_real_broadcast($notice, $remote=false) { # Make sure we have the OMB stuff require_once(INSTALLDIR.'/lib/omb.php'); $success = omb_broadcast_remote_subscribers($notice); + if (!$success) { + common_log(LOG_ERROR, 'Error in OMB broadcast for notice ' . $notice->id); + } } if ($success) { require_once(INSTALLDIR.'/lib/jabber.php'); $success = jabber_broadcast_notice($notice); + if (!$success) { + common_log(LOG_ERROR, 'Error in jabber broadcast for notice ' . $notice->id); + } } // XXX: broadcast notices to SMS // XXX: broadcast notices to other IM |