Typo fixed + more lines with line numbers
authorRoland Häder <roland@mxchange.org>
Mon, 25 Feb 2013 08:16:34 +0000 (08:16 +0000)
committerRoland Häder <roland@mxchange.org>
Mon, 25 Feb 2013 08:16:34 +0000 (08:16 +0000)
application/hub/main/tasks/cruncher/class_CruncherKeyProducerTask.php
application/hub/main/tasks/cruncher/class_CruncherTestUnitProducerTask.php
application/hub/main/tasks/idle/class_IdleLoopTask.php
application/hub/main/tasks/node/listener/class_NodeSocketListenerTask.php

index 92277d73999f747141c355b0a1b2c740908248fa..9872ff4b40a97f17acebfd086e220aa078ab5150 100644 (file)
@@ -69,7 +69,7 @@ class CruncherKeyProducerTask extends BaseTask implements Taskable, Visitable {
                $stateInstance = Registry::getRegistry()->getInstance('cruncher')->getStateInstance();
 
                // Debug message
-               //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('TASK: Executing stateInstance=' . $stateInstance->__toString());
+               //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('TASK[' . __LINE__ . ']: Executing stateInstance=' . $stateInstance->__toString());
 
                // We can now invoke that state instance and pass our producer instance for generating some test units
                $stateInstance->executeState($producerInstance);
index 1f712b7b31a668dde7fb260f4bca80af455decc8..26d0baa1355d0b6e581209b5444f532e18fdea33 100644 (file)
@@ -69,7 +69,7 @@ class CruncherTestUnitProducerTask extends BaseTask implements Taskable, Visitab
                $stateInstance = Registry::getRegistry()->getInstance('cruncher')->getStateInstance();
 
                // Debug message
-               //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('TASK: Executing stateInstance=' . $stateInstance->__toString());
+               //* DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('TASK[' . __LINE__ . ']: Executing stateInstance=' . $stateInstance->__toString());
 
                // We can now invoke that state instance and pass our producer instance for generating some test units
                $stateInstance->executeState($producerInstance);
index acb9dba1f088169e99c4f5182a633c0a1b314e0b..c65582647f15c4f0576ab7c8f59168b7b89b2f1d 100644 (file)
@@ -73,7 +73,7 @@ class IdleLoopTask extends BaseTask implements Taskable, Visitable {
         */
        public function doShutdown () {
                // Debug message
-               self::createDebugInstance(__CLASS__)->debugOutput('IDLE-TASK: Shutting down...');
+               self::createDebugInstance(__CLASS__)->debugOutput('IDLE-TASK[' . __LINE__ . ']: Shutting down...');
        }
 }
 
index fe4274ac55c81ed916da5227c5ea832832dc77e1..23494850ff2a96d0e3f0e3941418f3cc6ba0b883 100644 (file)
@@ -56,7 +56,7 @@ class NodeSocketListenerTask extends BaseTask implements Taskable, Visitable {
                $nodeInstance = Registry::getRegistry()->getInstance('node');
 
                // Visit the pool listener task
-               //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('LISTENER-TASK: Going to visit object ' . $nodeInstance->getListenerPoolInstance()->__toString() . ' ...');
+               //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('LISTENER-TASK[' . __LINE__ . ']: Going to visit object ' . $nodeInstance->getListenerPoolInstance()->__toString() . ' ...');
                $nodeInstance->getListenerPoolInstance()->accept($visitorInstance);
 
                // Visit this task