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:
authorMatthieu Napoli <matthieu@mnapoli.fr>2014-12-05 01:01:47 +0300
committerMatthieu Napoli <matthieu@mnapoli.fr>2014-12-05 01:01:47 +0300
commit28a07a8d13a05f923b3d231283261e484078de72 (patch)
treed390d11988875829b808a69a9095637a63b53716 /plugins/CoreConsole
parenta26cf222ff29851440d71cc63df7b3f8650100d3 (diff)
#6622 Logger refactoring: removed manual overriding of the log level in CLI since it's now dependent of the verbosity level
`Piwik\Log::setLogLevel` is now deprecated and doesn't do anything. Its usages have been removed.
Diffstat (limited to 'plugins/CoreConsole')
-rw-r--r--plugins/CoreConsole/Commands/CoreArchiver.php4
1 files changed, 0 insertions, 4 deletions
diff --git a/plugins/CoreConsole/Commands/CoreArchiver.php b/plugins/CoreConsole/Commands/CoreArchiver.php
index 3ed3f2a7a5..39167e8870 100644
--- a/plugins/CoreConsole/Commands/CoreArchiver.php
+++ b/plugins/CoreConsole/Commands/CoreArchiver.php
@@ -35,10 +35,6 @@ class CoreArchiver extends ConsoleCommand
throw new \InvalidArgumentException('No valid URL given. If you have specified a valid URL try --piwik-domain instead of --url');
}
- if ($input->getOption('verbose')) {
- Log::getInstance()->setLogLevel(Log::VERBOSE);
- }
-
$archiver = $this->makeArchiver($url, $input);
try {