From 8948f66d0e7341afa418fbe097d52b5a3038098b Mon Sep 17 00:00:00 2001 From: noveens Date: Mon, 6 Mar 2017 18:43:03 +0530 Subject: [PATCH] maintenance warning printed on STDERR rather than STDOUT redundant check removed Signed-off-by: Morris Jobke --- lib/private/Console/Application.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/private/Console/Application.php b/lib/private/Console/Application.php index 7d2f03d593..22eb5656fc 100644 --- a/lib/private/Console/Application.php +++ b/lib/private/Console/Application.php @@ -37,6 +37,7 @@ use Symfony\Component\Console\Application as SymfonyApplication; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Output\OutputInterface; +use Symfony\Component\Console\Output\ConsoleOutputInterface; use Symfony\Component\EventDispatcher\EventDispatcherInterface; class Application { @@ -97,7 +98,8 @@ class Application { throw new NeedsUpdateException(); } elseif ($this->config->getSystemValue('maintenance', false)) { if ($input->getArgument('command') !== '_completion') { - $output->writeln("Nextcloud is in maintenance mode - no apps have been loaded"); + $errOutput = $output->getErrorOutput(); + $errOutput->writeln('ownCloud is in maintenance mode - no app have been loaded' . PHP_EOL); } } else { OC_App::loadApps();