Browse Source
Merge pull request #22780 from nextcloud/bugfix/20921
Fix tense of updater logs
pull/22791/head
John Molakvoæ
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
core/Command/Upgrade.php
|
|
|
@ -240,10 +240,10 @@ class Upgrade extends Command { |
|
|
|
$output->writeln("<error>$message</error>"); |
|
|
|
}); |
|
|
|
$updater->listen('\OC\Updater', 'setDebugLogLevel', function ($logLevel, $logLevelName) use ($output) { |
|
|
|
$output->writeln("<info>Set log level to debug</info>"); |
|
|
|
$output->writeln("<info>Setting log level to debug</info>"); |
|
|
|
}); |
|
|
|
$updater->listen('\OC\Updater', 'resetLogLevel', function ($logLevel, $logLevelName) use ($output) { |
|
|
|
$output->writeln("<info>Reset log level</info>"); |
|
|
|
$output->writeln("<info>Resetting log level</info>"); |
|
|
|
}); |
|
|
|
$updater->listen('\OC\Updater', 'startCheckCodeIntegrity', function () use ($output) { |
|
|
|
$output->writeln("<info>Starting code integrity check...</info>"); |
|
|
|
|