]> git.mxchange.org Git - hub.git/commitdiff
Added debug lines + commented one noisy out.
authorRoland Haeder <roland@mxchange.org>
Sun, 27 Apr 2014 12:05:52 +0000 (14:05 +0200)
committerRoland Haeder <roland@mxchange.org>
Sun, 27 Apr 2014 12:05:52 +0000 (14:05 +0200)
Signed-off-by: Roland Haeder <roland@mxchange.org>
application/hub/main/helper/dht/class_DhtBootstrapHelper.php
application/hub/main/streams/raw_data/input/class_RawDataInputStream.php

index 70627b69f244ec669c56c8bf3630362a9b1a6593..bc5fcafccdd0fe1c4dedbac5f9009f6f689fcf06 100644 (file)
@@ -82,6 +82,9 @@ class DhtBootstrapHelper extends BaseHubSystemHelper implements HelpableDht {
         * @return      void
         */
        public function sendPackage (Distributable $dhtInstance) {
+               // Debug message
+               /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('HELPER[' . __METHOD__ . ':' . __LINE__ . ']: CALLED!');
+
                /*
                 * Sanity check: Is the DHT in the approx. state? 'init' for bootstrap
                 * nodes and 'virgin' for all others.
@@ -96,6 +99,9 @@ class DhtBootstrapHelper extends BaseHubSystemHelper implements HelpableDht {
 
                // Next, feed the content in. The network package class is a pipe-through class.
                $packageInstance->enqueueRawDataFromTemplate($this, NetworkPackage::PROTOCOL_TCP);
+
+               // Debug message
+               /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('HELPER[' . __METHOD__ . ':' . __LINE__ . ']: EXIT!');
        }
 }
 
index df633482e2a175557199dd3bef9a29b2bb55b220..4bfda2668e02f44698493366b21d72e7762b5e03 100644 (file)
@@ -62,7 +62,7 @@ class RawDataInputStream extends BaseStream implements InputStreamable {
         */
        public function streamData ($data) {
                // Debug message
-               /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('RAW-INPUT-STREAM[' . __METHOD__ . ':' . __LINE__ . ': data(' . strlen($data) . ')=' . $data);
+               //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('RAW-INPUT-STREAM[' . __METHOD__ . ':' . __LINE__ . ': data(' . strlen($data) . ')=' . $data);
 
                // Do we have start and end marker again?
                assert($this->ifStartEndMarkersSet($data));