diff options
author | Morris Jobke <hey@morrisjobke.de> | 2021-01-07 21:04:11 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2021-01-07 21:04:11 +0100 |
commit | d0ac76a77c820d065f7b4af5238e5d11ec66253b (patch) | |
tree | fb14ca6c48f0c219b8dd529c9f76948e2ad490e0 /core/Command/Maintenance | |
parent | f1921364d692a521c5bf5860ce453bae3f9facae (diff) | |
download | nextcloud-server-d0ac76a77c820d065f7b4af5238e5d11ec66253b.tar.gz nextcloud-server-d0ac76a77c820d065f7b4af5238e5d11ec66253b.zip |
Add more previous exceptions to database setup code
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'core/Command/Maintenance')
-rw-r--r-- | core/Command/Maintenance/Install.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/Command/Maintenance/Install.php b/core/Command/Maintenance/Install.php index ed1aeeff922..fc219e79bcd 100644 --- a/core/Command/Maintenance/Install.php +++ b/core/Command/Maintenance/Install.php @@ -218,6 +218,7 @@ class Install extends Command { private function printThrowable(OutputInterface $output, Throwable $t): void { $output->write('<info>Trace: ' . $t->getTraceAsString() . '</info>'); + $output->writeln(''); if ($t->getPrevious() !== null) { $output->writeln(''); $output->writeln('<info>Previous: ' . get_class($t->getPrevious()) . ': ' . $t->getPrevious()->getMessage() . '</info>'); |