From 777f2e81a3eb08beffc00ee5e513e68899dbd21e Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Sat, 31 Jan 2015 21:24:16 +0000 Subject: [PATCH] Show more info when a download fails --- src/Composer/Downloader/FileDownloader.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Composer/Downloader/FileDownloader.php b/src/Composer/Downloader/FileDownloader.php index 0c03f18ab..96bd57c06 100644 --- a/src/Composer/Downloader/FileDownloader.php +++ b/src/Composer/Downloader/FileDownloader.php @@ -90,10 +90,10 @@ class FileDownloader implements DownloaderInterface } catch (\Exception $e) { if ($this->io->isDebug()) { $this->io->write(''); - $this->io->write('Failed: ['.get_class($e).'] '.$e->getMessage()); + $this->io->write('Failed: ['.get_class($e).'] '.$e->getCode().': '.$e->getMessage()); } elseif (count($urls)) { $this->io->write(''); - $this->io->write(' Failed, trying the next URL'); + $this->io->write(' Failed, trying the next URL ('.$e->getCode().': '.$e->getMessage().')'); } if (!count($urls)) {