diff options
author | Johannes Ernst <jernst@indiecomputing.com> | 2018-06-06 20:40:06 +0000 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2018-06-29 10:37:45 +0200 |
commit | 0a65e62f29664730ac1aabcb612301be329ceed2 (patch) | |
tree | 3e510f67a5788138fb95bdea9f9bd7b795747c1b /lib/public/Log | |
parent | 3ff3141a1e4c9482ddaa68e13f545eb7e62ff9b7 (diff) | |
download | nextcloud-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/public/Log')
-rw-r--r-- | lib/public/Log/ILogFactory.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/public/Log/ILogFactory.php b/lib/public/Log/ILogFactory.php index d8e1ab4ee76..6f843d12687 100644 --- a/lib/public/Log/ILogFactory.php +++ b/lib/public/Log/ILogFactory.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 * @@ -33,7 +34,7 @@ use OCP\ILogger; */ interface ILogFactory { /** - * @param string $type - one of: file, errorlog, syslog + * @param string $type - one of: file, errorlog, syslog, systemd * @return IWriter * @since 14.0.0 */ |