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/config
diff options
context:
space:
mode:
authorMatthieu Napoli <matthieu@mnapoli.fr>2014-12-01 02:14:10 +0300
committerMatthieu Napoli <matthieu@mnapoli.fr>2014-12-01 02:14:10 +0300
commit528d5dcfe266e4b18f87b9fb51cfcb8e7782f8cc (patch)
tree91ee8ab3bae1daac646e777f3f32093ab2290393 /config
parent3563fe0c319d8925af57cbd26695d1bc4b63d2ef (diff)
#6622 Logger refactoring: moved "log message processing" into "Processor" objects (to prepare the transition to Monolog)
Diffstat (limited to 'config')
-rw-r--r--config/global.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/config/global.php b/config/global.php
index 359519cab9..fc30ae5889 100644
--- a/config/global.php
+++ b/config/global.php
@@ -29,5 +29,8 @@ return array(
}
return '%level% %tag%[%datetime%] %message%';
}),
+ 'log.processors' => array(
+ DI\link('Piwik\Log\Processor\SprintfProcessor'),
+ ),
);