From: Roland Häder Date: Sat, 6 Jul 2013 20:38:12 +0000 (+0000) Subject: Added commented out debug line X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=ae59ed2ccd3be6c6da6c0f47c107f68f19f4bf75;p=hub.git Added commented out debug line --- diff --git a/application/hub/main/helper/connection/class_BaseConnectionHelper.php b/application/hub/main/helper/connection/class_BaseConnectionHelper.php index c41d22eb4..c9d7fa3c4 100644 --- a/application/hub/main/helper/connection/class_BaseConnectionHelper.php +++ b/application/hub/main/helper/connection/class_BaseConnectionHelper.php @@ -396,6 +396,9 @@ class BaseConnectionHelper extends BaseHubSystemHelper implements Registerable, // Fill sending buffer with data while (strlen($dataStream) > 0) { + // Debug message + //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('CONNECTION-HELPER[' . __LINE__ . ']: packageData=' . print_r($packageData, TRUE)); + // Convert the package data array to a raw data stream $dataStream = $this->getRawDataFromPackageArray($packageData); //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('CONNECTION-HELPER[' . __LINE__ . ']: Adding ' . strlen($dataStream) . ' bytes to the sending buffer ...');