diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-09-13 12:11:07 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-09-13 12:11:07 -0400 |
commit | ed57778b92e03d1e1dc922273eb07bd929398cbd (patch) | |
tree | 15597a56cb9e929ea1f604681b0b22fdba30a157 /scripts/publicqueuehandler.php | |
parent | a482123feaf4ce90d24326067b4e75445b3dfeaa (diff) |
LOG_ERROR -> LOG_ERR
darcs-hash:20080913161107-84dde-30b694455d509a7ec2d12e8418f54ce695aa0993.gz
Diffstat (limited to 'scripts/publicqueuehandler.php')
-rwxr-xr-x | scripts/publicqueuehandler.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/publicqueuehandler.php b/scripts/publicqueuehandler.php index dde6a3427..b1ae1d581 100755 --- a/scripts/publicqueuehandler.php +++ b/scripts/publicqueuehandler.php @@ -43,8 +43,8 @@ class PublicQueueHandler extends XmppQueueHandler { try { return jabber_public_notice($notice); } catch (XMPPHP_Exception $e) { - $this->log(LOG_ERROR, "Got an XMPPHP_Exception: " . $e->getMessage()); - exit(1); + $this->log(LOG_ERR, "Got an XMPPHP_Exception: " . $e->getMessage()); + die($e->getMessage()); } } } |