]> git.mxchange.org Git - hub.git/commitdiff
Debug message added
authorRoland Häder <roland@mxchange.org>
Tue, 7 Jul 2009 19:34:15 +0000 (19:34 +0000)
committerRoland Häder <roland@mxchange.org>
Tue, 7 Jul 2009 19:34:15 +0000 (19:34 +0000)
application/hub/main/pools/listener/class_DefaultListenerPool.php

index ce7fe90c5ad26b14fc256edaef8877e9d7931193..524e81c0a5ea674079beb6783f4ee486be860f3e 100644 (file)
@@ -61,6 +61,13 @@ class DefaultListenerPool extends BasePool implements Poolable {
        public function addListener (Listenable $listenerInstance) {
                // Add this listener instance to the instance list
                parent::addInstance('listener', $listenerInstance);
+
+               // Debug message
+               $this->getDebugInstance()->output(
+                       'POOL: Listener ' . $listenerInstance->__toString() .
+                       ' listening to ' . $listenerInstance->getListenAddress() . ':' .
+                       $listenerInstance->getListenPort() . ' added to listener pool.'
+               );
        }
 }