Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2017-01-18 01:20:27 +0300
committermattab <matthieu.aubry@gmail.com>2017-01-18 01:32:01 +0300
commitd807689e85825351b58f11927b3ad7a7926473c3 (patch)
treea772e9f10892f5981b9712eb6ae69cca9d345a6d /core/Plugin/ConsoleCommand.php
parent4081d131973b59383b6acaed1ac4746c1ca0757f (diff)
Better logging message when archiving
Diffstat (limited to 'core/Plugin/ConsoleCommand.php')
-rw-r--r--core/Plugin/ConsoleCommand.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Plugin/ConsoleCommand.php b/core/Plugin/ConsoleCommand.php
index 91d18c5c77..e009f058e7 100644
--- a/core/Plugin/ConsoleCommand.php
+++ b/core/Plugin/ConsoleCommand.php
@@ -39,7 +39,7 @@ class ConsoleCommand extends SymfonyCommand
$value = $input->getOption($name);
if ($option->isValueRequired() && empty($value)) {
- throw new \InvalidArgumentException(sprintf('The required option %s is not set', $name));
+ throw new \InvalidArgumentException(sprintf('The required option --%s is not set', $name));
}
}
}