summaryrefslogtreecommitdiffstats
path: root/lib/private/Log/LogFactory.php
diff options
context:
space:
mode:
authorJohannes Ernst <jernst@indiecomputing.com>2018-06-06 20:40:06 +0000
committerArthur Schiwon <blizzz@arthur-schiwon.de>2018-06-29 10:37:45 +0200
commit0a65e62f29664730ac1aabcb612301be329ceed2 (patch)
tree3e510f67a5788138fb95bdea9f9bd7b795747c1b /lib/private/Log/LogFactory.php
parent3ff3141a1e4c9482ddaa68e13f545eb7e62ff9b7 (diff)
downloadnextcloud-server-0a65e62f29664730ac1aabcb612301be329ceed2.tar.gz
nextcloud-server-0a65e62f29664730ac1aabcb612301be329ceed2.zip
Added a logger for systemd/journald
Added a unit test Signed-off-by: Johannes Ernst <jernst@indiecomputing.com>
Diffstat (limited to 'lib/private/Log/LogFactory.php')
-rw-r--r--lib/private/Log/LogFactory.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/private/Log/LogFactory.php b/lib/private/Log/LogFactory.php
index 9b9d12abfa8..5bb803cbaf2 100644
--- a/lib/private/Log/LogFactory.php
+++ b/lib/private/Log/LogFactory.php
@@ -3,6 +3,7 @@
* @copyright Copyright (c) 2018 Arthur Schiwon <blizzz@arthur-schiwon.de>
*
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
+ * @author Johannes Ernst <jernst@indiecomputing.com>
*
* @license GNU AGPL version 3 or any later version
*
@@ -50,6 +51,8 @@ class LogFactory implements ILogFactory {
return new Errorlog();
case 'syslog':
return $this->c->resolve(Syslog::class);
+ case 'systemd':
+ return $this->c->resolve(Systemdlog::class);
case 'file':
return $this->buildLogFile();