From e277a9b3ddfd64b154b91f2eeb79a1c1151ff5cb Mon Sep 17 00:00:00 2001 From: Thomas Müller Date: Tue, 24 Feb 2015 12:52:16 +0100 Subject: print app upgrade information to console as well --- core/command/upgrade.php | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'core') diff --git a/core/command/upgrade.php b/core/command/upgrade.php index 9f938cdf6d1..e5402796136 100644 --- a/core/command/upgrade.php +++ b/core/command/upgrade.php @@ -113,6 +113,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"); -- cgit v1.2.3