diff options
author | Robin Appelman <robin@icewind.nl> | 2016-08-09 13:46:41 +0200 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2016-08-09 13:46:41 +0200 |
commit | e783006fe26ef8752637bc3f57082acbe90a93a0 (patch) | |
tree | c64d5d73771c52e3d30d633a1c56f4477335e89f /core/Command | |
parent | c04b0364acecc3b9c9bf5ee37d0e7db5b5b5234a (diff) | |
download | nextcloud-server-e783006fe26ef8752637bc3f57082acbe90a93a0.tar.gz nextcloud-server-e783006fe26ef8752637bc3f57082acbe90a93a0.zip |
make disabled apps more clear during upgrade
Diffstat (limited to 'core/Command')
-rw-r--r-- | core/Command/Upgrade.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/Command/Upgrade.php b/core/Command/Upgrade.php index 77d67534c6a..69354272de8 100644 --- a/core/Command/Upgrade.php +++ b/core/Command/Upgrade.php @@ -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>'); |