diff --git a/core/command/upgrade.php b/core/command/upgrade.php index 8899bd50ba..87e83afde2 100644 --- a/core/command/upgrade.php +++ b/core/command/upgrade.php @@ -129,6 +129,12 @@ class Upgrade extends Command { $updater->listen('\OC\Updater', 'thirdPartyAppDisabled', function ($app) use($output) { $output->writeln('Disabled 3rd-party app: ' . $app . ''); }); + $updater->listen('\OC\Updater', 'appUpgradeCheck', function () use ($output) { + $output->writeln('Checked database schema update for apps'); + }); + $updater->listen('\OC\Updater', 'appUpgrade', function ($app, $version) use ($output) { + $output->writeln("Updated <$app> to $version"); + }); $updater->listen('\OC\Updater', 'failure', function ($message) use($output, $self) { $output->writeln("$message");