X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=application%2Fhub%2Fmain%2Fpools%2Fclass_BasePool.php;h=a6befaa75949b9bb9b998a35d06899a708c98a9c;hb=e68827851c52084ced0b6f03fc825dd4802647e3;hp=9090a8be640f65461b3e7e5fe1ba99c8d47781c3;hpb=44314097c8abbfef2ee703eeda601dffd22520af;p=hub.git diff --git a/application/hub/main/pools/class_BasePool.php b/application/hub/main/pools/class_BasePool.php index 9090a8be6..a6befaa75 100644 --- a/application/hub/main/pools/class_BasePool.php +++ b/application/hub/main/pools/class_BasePool.php @@ -77,7 +77,8 @@ class BasePool extends BaseHubSystem implements Visitable { * @return void */ protected final function addInstance ($group, $poolName, Visitable $visitableInstance) { - /* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('POOL[' . __METHOD__ . ':' . __LINE__ . ']: group=' . $group . ',poolName=' . $poolName . ',visitableInstance=' . $visitableInstance->__toString() . ' - CALLED!'); + // Debug message + //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('POOL[' . __METHOD__ . ':' . __LINE__ . ']: group=' . $group . ',poolName=' . $poolName . ',visitableInstance=' . $visitableInstance->__toString() . ' - CALLED!'); // Make sure the group is not 'invalid' assert($group != 'invalid'); @@ -90,6 +91,9 @@ class BasePool extends BaseHubSystem implements Visitable { // Add it to given pool group $this->getPoolEntriesInstance()->addInstance($group, $poolName, $visitableInstance); + + // Debug message + //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('POOL[' . __METHOD__ . ':' . __LINE__ . ']: EXIT!'); } /**