8000 changed warning verbosity; fixes typo · fancyweb/symfony@86c771a · GitHub
[go: up one dir, main page]

Skip to content

Commit 86c771a

Browse files
changed warning verbosity; fixes typo
1 parent 7135aa4 commit 86c771a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/Symfony/Component/Console/Command/Command.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,10 @@ public function run(InputInterface $input, OutputInterface $output)
220220
if (function_exists('cli_set_process_title')) {
221221
if (!@cli_set_process_title($this->processTitle)) {
222222
if ('Darwin' === PHP_OS) {
223-
$output->writeln('<comment>Running "cli_get_process_title" as an unprivileged user is not supported on MacOS.</comment>');
223+
$output->writeln(
224+
'<comment>Running "cli_set_process_title" as an unprivileged user is not supported on MacOS.</comment>',
225+
OutputInterface::VERBOSITY_VERY_VERBOSE
226+
);
224227
} else {
225228
cli_set_process_title($this->processTitle);
226229
}

0 commit comments

Comments
 (0)
0