From: Roland Haeder <roland@mxchange.org>
Date: Mon, 10 Feb 2014 21:06:10 +0000 (+0100)
Subject: Added noisy debug lines for finding missing method.
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=3f3e76ef43ab77b955be0d731053da27f6b42705;p=hub.git

Added noisy debug lines for finding missing method.

Signed-off-by: Roland Haeder <roland@mxchange.org>
---

diff --git a/application/hub/main/database/wrapper/node/class_NodeDistributedHashTableDatabaseWrapper.php b/application/hub/main/database/wrapper/node/class_NodeDistributedHashTableDatabaseWrapper.php
index b9035bd06..002e2981d 100644
--- a/application/hub/main/database/wrapper/node/class_NodeDistributedHashTableDatabaseWrapper.php
+++ b/application/hub/main/database/wrapper/node/class_NodeDistributedHashTableDatabaseWrapper.php
@@ -500,6 +500,7 @@ class NodeDistributedHashTableDatabaseWrapper extends BaseDatabaseWrapper implem
 	 */
 	public function removeNonPublicDataFromArray(array $data) {
 		// Currently call only inner method
+		/* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('DHT-WRAPPER[' . $this->__toString() . ']: Calling parent::removeNonPublicDataFromArray(data) ...');
 		$data = parent::removeNonPublicDataFromArray($data);
 
 		// Return cleaned data
diff --git a/application/hub/main/database/wrapper/node/class_NodeInformationDatabaseWrapper.php b/application/hub/main/database/wrapper/node/class_NodeInformationDatabaseWrapper.php
index 307cbb3e5..820102f50 100644
--- a/application/hub/main/database/wrapper/node/class_NodeInformationDatabaseWrapper.php
+++ b/application/hub/main/database/wrapper/node/class_NodeInformationDatabaseWrapper.php
@@ -172,6 +172,7 @@ class NodeInformationDatabaseWrapper extends BaseDatabaseWrapper implements Node
 	 */
 	public function removeNonPublicDataFromArray(array $data) {
 		// Currently call only inner method
+		/* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('NODE-WRAPPER[' . $this->__toString() . ']: Calling parent::removeNonPublicDataFromArray(data) ...');
 		$data = parent::removeNonPublicDataFromArray($data);
 
 		// Return cleaned data
diff --git a/application/hub/main/dht/class_BaseDht.php b/application/hub/main/dht/class_BaseDht.php
index f6b5396ed..fd5693417 100644
--- a/application/hub/main/dht/class_BaseDht.php
+++ b/application/hub/main/dht/class_BaseDht.php
@@ -209,6 +209,7 @@ 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->getWrapper()->removeNonPublicDataFromArray(data) ...');
 		$entry = $this->getWrapperInstance()->removeNonPublicDataFromArray($entry);
 
 		// Inject variables
diff --git a/core b/core
index 76c734026..b5ef43105 160000
--- a/core
+++ b/core
@@ -1 +1 @@
-Subproject commit 76c734026223c500bb37cc22539cbd1c6f006f83
+Subproject commit b5ef4310540360e17bcb4f198bf188ba00ab7a65