]> git.mxchange.org Git - hub.git/commitdiff
Commented out noisy debug line + logged array 'recipients'.
authorRoland Haeder <roland@mxchange.org>
Sat, 15 Feb 2014 21:33:51 +0000 (22:33 +0100)
committerRoland Haeder <roland@mxchange.org>
Sat, 15 Feb 2014 21:33:51 +0000 (22:33 +0100)
Signed-off-by: Roland Haeder <roland@mxchange.org>
application/hub/main/dht/class_BaseDht.php
application/hub/main/recipient/dht/class_DhtRecipient.php

index c5ef97b97d84a8d5df9686de746e8c0be18fc82e..21b5f8d248fd0ec6681af8fd1dcf34c2bd93564e 100644 (file)
@@ -209,9 +209,9 @@ abstract class BaseDht extends BaseHubSystem {
                assert(is_array($entry));
 
                // Remove any non-public data the database layer desires
-               /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('DHT[' . $this->__toString() . ']: Calling this->getWrapperInstance()->removeNonPublicDataFromArray(data) ...');
+               //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('DHT[' . $this->__toString() . ']: Calling this->getWrapperInstance()->removeNonPublicDataFromArray(data) ...');
                $entry = $this->getWrapperInstance()->removeNonPublicDataFromArray($entry);
-               /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('DHT[' . $this->__toString() . ']: entry[]=' . gettype($entry));
+               //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('DHT[' . $this->__toString() . ']: entry[]=' . gettype($entry));
 
                // Some sanity-checks again
                assert(is_array($entry));
index 1f0bd9d337f592c2dd2a44ae574eb97f7e46f610..58266fd07ce816e9c76452d6715131385bea7065 100644 (file)
@@ -69,7 +69,7 @@ class DhtRecipient extends BaseRecipient implements Recipient {
                // "Discover" recipients by given package data
                $recipients = $discoverInstance->resolveRecipientsByPackageData($packageData);
 
-               $this->partialStub('Please implement this method. recipient=' . $recipient);
+               $this->partialStub('Please implement this method. recipient=' . $recipient . ',recipients=' . print_r($recipients, TRUE));
        }
 }