Skip to content

Commit

Permalink
Merge pull request #90 from pfrenssen/reduce-verbosity
Browse files Browse the repository at this point in the history
Only show debugging info when using the verbose option
  • Loading branch information
cweagans authored Dec 13, 2016
2 parents 59724a2 + 2b19d64 commit 7c0e4c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Patches.php
Original file line number Diff line number Diff line change
Expand Up @@ -139,12 +139,12 @@ public function checkPatches(Event $event) {
public function gatherPatches(PackageEvent $event) {
// If we've already done this, then don't do it again.
if (isset($this->patches['_patchesGathered'])) {
$this->io->write('<info>Patches already gathered. Skipping</info>');
$this->io->write('<info>Patches already gathered. Skipping</info>', TRUE, IOInterface::VERBOSE);
return;
}
// If patching has been disabled, bail out here.
elseif (!$this->isPatchingEnabled()) {
$this->io->write('<info>Patching is disabled. Skipping.</info>');
$this->io->write('<info>Patching is disabled. Skipping.</info>', TRUE, IOInterface::VERBOSE);
return;
}

Expand Down

0 comments on commit 7c0e4c5

Please sign in to comment.