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
path: root/misc
diff options
context:
space:
mode:
authorMatthieu Napoli <matthieu@mnapoli.fr>2015-02-02 01:45:32 +0300
committerMatthieu Napoli <matthieu@mnapoli.fr>2015-02-12 00:12:19 +0300
commite122a4e37b3eef21fc6fc32ed7d31c56c38d673f (patch)
tree89aa9600a70200f1e94cf0454d62d037f0e361e2 /misc
parent47c0eae3f8202430ea576e09cf0ded90f783eea1 (diff)
Moved the monolog configuration and code into a Monolog plugin
Diffstat (limited to 'misc')
-rw-r--r--misc/cron/archive.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/cron/archive.php b/misc/cron/archive.php
index be81b9a6a7..eecd78946b 100644
--- a/misc/cron/archive.php
+++ b/misc/cron/archive.php
@@ -73,7 +73,7 @@ if (isset($_SERVER['argv']) && Piwik\Console::isSupported()) {
/** @var \Monolog\Logger $logger */
$logger = StaticContainer::get('Psr\Log\LoggerInterface');
$handler = new StreamHandler('php://output', Logger::INFO);
- $handler->setFormatter(StaticContainer::get('Piwik\Log\Formatter\LineMessageFormatter'));
+ $handler->setFormatter(StaticContainer::get('Piwik\Plugins\Monolog\Formatter\LineMessageFormatter'));
$logger->pushHandler($handler);
}