From a8795b02b94495e3a454039ae4fdaa79e9ebe23d Mon Sep 17 00:00:00 2001 From: Franz Liedke Date: Mon, 19 Mar 2018 23:28:05 +0100 Subject: [PATCH] List debug mode setting in info output --- framework/core/src/Foundation/Console/InfoCommand.php | 1 + 1 file changed, 1 insertion(+) diff --git a/framework/core/src/Foundation/Console/InfoCommand.php b/framework/core/src/Foundation/Console/InfoCommand.php index 1a467051a..291c88343 100644 --- a/framework/core/src/Foundation/Console/InfoCommand.php +++ b/framework/core/src/Foundation/Console/InfoCommand.php @@ -72,6 +72,7 @@ class InfoCommand extends AbstractCommand $this->info('Base URL: '.$this->config['url']); $this->info('Installation path: '.getcwd()); + $this->info('Debug mode '.$this->config['debug'] ? 'ON' : 'off'); } /**