]> git.mxchange.org Git - core.git/commitdiff
These are noisy debug lines.
authorRoland Haeder <roland@mxchange.org>
Sun, 28 Jun 2015 19:43:52 +0000 (21:43 +0200)
committerRoland Haeder <roland@mxchange.org>
Sun, 28 Jun 2015 19:43:52 +0000 (21:43 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
inc/classes/main/handler/tasks/class_TaskHandler.php

index 1f958134c8df12d13505a30c1e9e1f7d2e0f82a3..aa4cb8c501e5b1f7eb02696b1406ad40356d44cb 100644 (file)
@@ -168,13 +168,13 @@ class TaskHandler extends BaseHandler implements Registerable, HandleableTask {
         */
        private function unregisterTask (array $taskData) {
                // Debug output
-               self::createDebugInstance(__CLASS__)->debugOutput('TASK-HANDLER[' . __METHOD__ . ':' . __LINE__ . ']: Removing task ' . $taskData['id'] . ' from queue - CALLED!');
+               //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('TASK-HANDLER[' . __METHOD__ . ':' . __LINE__ . ']: Removing task ' . $taskData['id'] . ' from queue - CALLED!');
 
                // Remove the entry
                $this->getListInstance()->removeEntry('tasks', $taskData);
 
                // Debug output
-               self::createDebugInstance(__CLASS__)->debugOutput('TASK-HANDLER[' . __METHOD__ . ':' . __LINE__ . ']: Removing task ' . $taskData['id'] . ' from queue - EXIT!');
+               //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('TASK-HANDLER[' . __METHOD__ . ':' . __LINE__ . ']: Removing task ' . $taskData['id'] . ' from queue - EXIT!');
         }
 
        /**