From 2b19d64fe4e13874e2f665bcce32b5d163dc7c7e Mon Sep 17 00:00:00 2001 From: Pieter Frenssen Date: Tue, 13 Dec 2016 15:54:44 +0100 Subject: [PATCH] Only show debugging info when using the verbose option. --- src/Patches.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Patches.php b/src/Patches.php index d1c1cf05..c7ab0dfa 100644 --- a/src/Patches.php +++ b/src/Patches.php @@ -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('Patches already gathered. Skipping'); + $this->io->write('Patches already gathered. Skipping', TRUE, IOInterface::VERBOSE); return; } // If patching has been disabled, bail out here. elseif (!$this->isPatchingEnabled()) { - $this->io->write('Patching is disabled. Skipping.'); + $this->io->write('Patching is disabled. Skipping.', TRUE, IOInterface::VERBOSE); return; }