From cedbe7f1a0c85a998e3d3e707e53de0781820087 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Mon, 10 Aug 2015 12:58:58 +0100 Subject: [PATCH] Bump vcs verbosity output to very verbose, refs #4330 --- src/Composer/Repository/VcsRepository.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Composer/Repository/VcsRepository.php b/src/Composer/Repository/VcsRepository.php index 034260d0c..bb9d76814 100644 --- a/src/Composer/Repository/VcsRepository.php +++ b/src/Composer/Repository/VcsRepository.php @@ -55,7 +55,7 @@ class VcsRepository extends ArrayRepository $this->url = $repoConfig['url']; $this->io = $io; $this->type = isset($repoConfig['type']) ? $repoConfig['type'] : 'vcs'; - $this->verbose = $io->isVerbose(); + $this->verbose = $io->isVeryVerbose(); $this->config = $config; $this->repoConfig = $repoConfig; }