From 7e5f33ffe28f857908e006e0a4bf46d8dad5ae36 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Thu, 18 May 2017 23:18:19 +0200 Subject: [PATCH] also line number MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- .../tests/commands/console/class_TestsConsoleMainCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/main/tests/commands/console/class_TestsConsoleMainCommand.php b/framework/main/tests/commands/console/class_TestsConsoleMainCommand.php index ce512ff7..92bcf2a4 100644 --- a/framework/main/tests/commands/console/class_TestsConsoleMainCommand.php +++ b/framework/main/tests/commands/console/class_TestsConsoleMainCommand.php @@ -71,7 +71,7 @@ class TestsConsoleMainCommand extends BaseCommand implements Commandable { */ public function execute (Requestable $requestInstance, Responseable $responseInstance) { // Debug message - self::createDebugInstance(__CLASS__)->debugOutput('MAIN: --- Starting tests ... ---'); + self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('MAIN: --- Starting tests ... ---'); // Get controller $controllerInstance = Registry::getRegistry()->getInstance('controller'); @@ -80,7 +80,7 @@ class TestsConsoleMainCommand extends BaseCommand implements Commandable { $controllerInstance->executeTestsFilters($requestInstance, $responseInstance); // Debug message - self::createDebugInstance(__CLASS__)->debugOutput('MAIN: --- Leaving main ... ---'); + self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('MAIN: --- Leaving main ... ---'); } /** -- 2.39.2