From 58cedc07b597c3d31b5c757d5a121806c9f07c6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 24 Feb 2015 12:52:16 +0100 Subject: [PATCH] print app upgrade information to console as well --- core/command/upgrade.php | 6 ++++++ 1 file changed, 6 insertions(+) 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");