From d48ab2b0513ce861df4212626b84b018849829d5 Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Thu, 18 Jun 2015 16:49:20 +0200 Subject: Proper repair step info during upgrade on cli --- core/command/upgrade.php | 3 +++ lib/repair/collation.php | 1 + 2 files changed, 4 insertions(+) diff --git a/core/command/upgrade.php b/core/command/upgrade.php index d037082c5e8..22f4293149f 100644 --- a/core/command/upgrade.php +++ b/core/command/upgrade.php @@ -101,6 +101,9 @@ class Upgrade extends Command { $updater->listen('\OC\Updater', 'disabledApps', function ($appList) use($output) { $output->writeln('Disabled incompatible apps: ' . implode(', ', $appList) . ''); }); + $updater->listen('\OC\Repair', 'info', function ($message) use($output) { + $output->writeln('Repair info: ' . $message . ''); + }); $updater->listen('\OC\Updater', 'failure', function ($message) use($output) { $output->writeln($message); diff --git a/lib/repair/collation.php b/lib/repair/collation.php index 2247cf82d0a..315969b7313 100644 --- a/lib/repair/collation.php +++ b/lib/repair/collation.php @@ -48,6 +48,7 @@ class Collation extends BasicEmitter implements \OC\RepairStep { foreach ($tables as $table) { $query = $this->connection->prepare('ALTER TABLE `' . $table . '` CONVERT TO CHARACTER SET utf8 COLLATE utf8_bin;'); $query->execute(); + $this->emit('\OC\Repair', 'info', array("Changed collation for $table")); } } -- cgit v1.2.3