1
0
Fork 0

Output exception class when audit fails

pull/10908/head
Jordi Boggiano 2022-06-30 09:12:39 +02:00
parent 137ed52966
commit de9996d4c4
1 changed files with 1 additions and 1 deletions

View File

@ -406,7 +406,7 @@ class Installer
} catch (TransportException $e) { } catch (TransportException $e) {
$this->io->error('Failed to audit '.$target.' packages.'); $this->io->error('Failed to audit '.$target.' packages.');
if ($this->io->isVerbose()) { if ($this->io->isVerbose()) {
$this->io->error($e->getMessage()); $this->io->error('['.get_class($e).'] '.$e->getMessage());
} }
} }
} else { } else {