diff options
author | Olivier Paroz <github@oparoz.com> | 2015-04-27 20:06:24 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-09-24 17:13:39 +0200 |
commit | f140084a8d69aea78058ac4f539019b9ff17f898 (patch) | |
tree | 98c6f262a506e0a7b26d11bb7ac5e84bb38d6b26 /lib | |
parent | 846b8268672df2c626616fec5f71e15570005e84 (diff) | |
download | nextcloud-server-f140084a8d69aea78058ac4f539019b9ff17f898.tar.gz nextcloud-server-f140084a8d69aea78058ac4f539019b9ff17f898.zip |
Use a 3rd party normalizer for the logger
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/log.php | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/lib/private/log.php b/lib/private/log.php index 3c0e7b45d1b..3c8149bc1d0 100644 --- a/lib/private/log.php +++ b/lib/private/log.php @@ -3,6 +3,7 @@ * @author Bart Visscher <bartv@thisnet.nl> * @author Bernhard Posselt <dev@bernhard-posselt.com> * @author Morris Jobke <hey@morrisjobke.de> + * @author Olivier Paroz <owncloud@oparoz.com> * @author Robin Appelman <icewind@owncloud.com> * @author Thomas Müller <thomas.mueller@tmit.eu> * @author Victor Dubiniuk <dubiniuk@owncloud.com> @@ -26,6 +27,8 @@ namespace OC; +use InterfaSys\LogNormalizer\Normalizer; + use \OCP\ILogger; use OCP\Security\StringUtils; @@ -48,12 +51,15 @@ class Log implements ILogger { /** @var boolean|null cache the result of the log condition check for the request */ private $logConditionSatisfied = null; + /** @var Normalizer */ + private $normalizer; /** * @param string $logger The logger that should be used * @param SystemConfig $config the system config object + * @param null $normalizer */ - public function __construct($logger=null, SystemConfig $config=null) { + public function __construct($logger=null, SystemConfig $config=null, $normalizer = null) { // FIXME: Add this for backwards compatibility, should be fixed at some point probably if($config === null) { $config = \OC::$server->getSystemConfig(); @@ -68,6 +74,11 @@ class Log implements ILogger { } else { $this->logger = $logger; } + if ($normalizer === null) { + $this->normalizer = new Normalizer(); + } else { + $this->normalizer = $normalizer; + } } @@ -175,6 +186,8 @@ class Log implements ILogger { $minLevel = min($this->config->getValue('loglevel', \OCP\Util::WARN), \OCP\Util::ERROR); $logCondition = $this->config->getValue('log.condition', []); + array_walk($context, [$this->normalizer, 'format']); + if (isset($context['app'])) { $app = $context['app']; |