]> git.mxchange.org Git - hub.git/commitdiff
Even more debug code re-enabled.
authorRoland Haeder <roland@mxchange.org>
Sat, 15 Feb 2014 23:19:57 +0000 (00:19 +0100)
committerRoland Haeder <roland@mxchange.org>
Sat, 15 Feb 2014 23:19:57 +0000 (00:19 +0100)
Signed-off-by: Roland Haeder <roland@mxchange.org>
application/hub/main/listener/class_BaseListenerDecorator.php
application/hub/main/package/class_NetworkPackage.php

index 144d5e106bc309edda99c0449496c838068cae02..7eec4c360a289d051a99127f15b73da8d8e15bcf 100644 (file)
@@ -151,7 +151,7 @@ class BaseListenerDecorator extends BaseDecorator implements Visitable {
                 * if the decoded data origins from a TCP or UDP connection so we can
                 * just pass it over to the network package receiver
                 */
-               /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('[' . __METHOD__ . ':' . __LINE__ . '] Going to handle over some raw data to receiver instance (' . $receiverInstance->__toString() . ' ...');
+               /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('[' . __METHOD__ . ':' . __LINE__ . '] Going to handle over some raw data to receiver instance (' . $receiverInstance->__toString() . ') ...');
                $receiverInstance->addRawDataToIncomingStack($handlerInstance);
        }
 }
index fc55db7104fbb6ad0f6d502e4a2a20f9913a71ab..186f5de99f1ad0728b06c32201fc33b55cb08d49 100644 (file)
@@ -869,7 +869,7 @@ class NetworkPackage extends BaseHubSystem implements Deliverable, Receivable, R
                $decodedData = $handlerInstance->getNextRawData();
 
                // Very noisy debug message:
-               //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('NETWORK-PACKAGE[' . __LINE__ . ']: decodedData[' . gettype($decodedData) . ']=' . print_r($decodedData, TRUE));
+               /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('NETWORK-PACKAGE[' . __LINE__ . ']: decodedData[' . gettype($decodedData) . ']=' . print_r($decodedData, TRUE));
 
                // And push it on our stack
                $this->getStackerInstance()->pushNamed(self::STACKER_NAME_DECODED_INCOMING, $decodedData);