From: Roland Häder <roland@mxchange.org>
Date: Thu, 18 May 2017 21:18:19 +0000 (+0200)
Subject: also line number
X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=7e5f33ffe28f857908e006e0a4bf46d8dad5ae36;p=core.git

also line number

Signed-off-by: Roland Häder <roland@mxchange.org>
---

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 ... ---');
 	}
 
 	/**