From: Roland Haeder Date: Sun, 28 Jun 2015 19:43:52 +0000 (+0200) Subject: These are noisy debug lines. X-Git-Url: https://git.mxchange.org/?p=core.git;a=commitdiff_plain;h=95757f61afe3e0bbd1d8edcd3d50b60fb4299dee These are noisy debug lines. Signed-off-by: Roland Häder --- diff --git a/inc/classes/main/handler/tasks/class_TaskHandler.php b/inc/classes/main/handler/tasks/class_TaskHandler.php index 1f958134..aa4cb8c5 100644 --- a/inc/classes/main/handler/tasks/class_TaskHandler.php +++ b/inc/classes/main/handler/tasks/class_TaskHandler.php @@ -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!'); } /**