Merge pull request #783 from nextcloud/app-disable-yellow

make disabled apps more clear during upgrade
This commit is contained in:
Lukas Reschke 2016-08-10 00:24:02 +02:00 committed by GitHub
commit 2b04b58d9a
1 changed files with 2 additions and 2 deletions

View File

@ -250,10 +250,10 @@ class Upgrade extends Command {
$output->writeln('<info>Checked database schema update</info>');
});
$updater->listen('\OC\Updater', 'incompatibleAppDisabled', function ($app) use($output) {
$output->writeln('<info>Disabled incompatible app: ' . $app . '</info>');
$output->writeln('<comment>Disabled incompatible app: ' . $app . '</comment>');
});
$updater->listen('\OC\Updater', 'thirdPartyAppDisabled', function ($app) use ($output) {
$output->writeln('<info>Disabled 3rd-party app: ' . $app . '</info>');
$output->writeln('<comment>Disabled 3rd-party app: ' . $app . '</comment>');
});
$updater->listen('\OC\Updater', 'upgradeAppStoreApp', function ($app) use($output) {
$output->writeln('<info>Update 3rd-party app: ' . $app . '</info>');