]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
more logging in xmppqueuehandler
authorEvan Prodromou <evan@controlyourself.ca>
Wed, 26 Aug 2009 09:50:20 +0000 (05:50 -0400)
committerEvan Prodromou <evan@controlyourself.ca>
Wed, 26 Aug 2009 09:50:48 +0000 (05:50 -0400)
lib/xmppqueuehandler.php

index 77d476c30e12217d1d3e8fe7edd54dc3be406f37..0ab837eb6563b7eed3f492b23d9d6410f9b78caa 100644 (file)
@@ -38,14 +38,20 @@ class XmppQueueHandler extends QueueHandler
     function start()
     {
         # Low priority; we don't want to receive messages
+
         $this->log(LOG_INFO, "INITIALIZE");
         $this->conn = jabber_connect($this->_id.$this->transport());
-        if ($this->conn) {
-            $this->conn->addEventHandler('message', 'forward_message', $this);
-            $this->conn->addEventHandler('reconnect', 'handle_reconnect', $this);
-            $this->conn->setReconnectTimeout(600);
-            jabber_send_presence("Send me a message to post a notice", 'available', null, 'available', -1);
+
+        if (empty($this->conn)) {
+            $this->log(LOG_ERR, "Couldn't connect to server.");
+            return false;
         }
+
+        $this->conn->addEventHandler('message', 'forward_message', $this);
+        $this->conn->addEventHandler('reconnect', 'handle_reconnect', $this);
+        $this->conn->setReconnectTimeout(600);
+        jabber_send_presence("Send me a message to post a notice", 'available', null, 'available', -1);
+
         return !is_null($this->conn);
     }
 
@@ -56,6 +62,8 @@ class XmppQueueHandler extends QueueHandler
 
     function handle_reconnect(&$pl)
     {
+        $this->log(LOG_NOTICE, 'reconnected');
+
         $this->conn->processUntil('session_start');
         $this->conn->presence(null, 'available', null, 'available', -1);
     }