]> git.mxchange.org Git - core.git/blobdiff - framework/main/tests/commands/console/class_TestsConsoleMainCommand.php
also line number
[core.git] / framework / main / tests / commands / console / class_TestsConsoleMainCommand.php
index ce512ff7ac7a3e860a8fe4435c354ea3d8148c32..92bcf2a4161fcbeef5f218678916c7fa0be9e23b 100644 (file)
@@ -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 ... ---');
        }
 
        /**