diff --git a/src/Symfony/Component/Console/Command/Command.php b/src/Symfony/Component/Console/Command/Command.php index b64d9af361..e15431061f 100644 --- a/src/Symfony/Component/Console/Command/Command.php +++ b/src/Symfony/Component/Console/Command/Command.php @@ -220,7 +220,10 @@ class Command if (function_exists('cli_set_process_title')) { if (!@cli_set_process_title($this->processTitle)) { if ('Darwin' === PHP_OS) { - $output->writeln('Running "cli_get_process_title" as an unprivileged user is not supported on MacOS.'); + $output->writeln( + 'Running "cli_set_process_title" as an unprivileged user is not supported on MacOS.', + OutputInterface::VERBOSITY_VERY_VERBOSE + ); } else { cli_set_process_title($this->processTitle); }