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:
-rw-r--r--core/CliMulti/RequestCommand.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/CliMulti/RequestCommand.php b/core/CliMulti/RequestCommand.php
index 74f4d9f6d0..be60dcf033 100644
--- a/core/CliMulti/RequestCommand.php
+++ b/core/CliMulti/RequestCommand.php
@@ -10,6 +10,7 @@ namespace Piwik\CliMulti;
use Piwik\Config;
use Piwik\Container\StaticContainer;
+use Piwik\Log;
use Piwik\Plugin\ConsoleCommand;
use Piwik\Url;
use Piwik\UrlHelper;
@@ -92,5 +93,6 @@ class RequestCommand extends ConsoleCommand
{
$container = StaticContainer::getContainer();
$container->set('Psr\Log\LoggerInterface', new NullLogger());
+ Log::unsetInstance();
}
}