summaryrefslogtreecommitdiffstats
path: root/lib/private/Log/Syslog.php
diff options
context:
space:
mode:
authorJohannes Ernst <jernst@indiecomputing.com>2018-06-18 18:29:31 +0000
committerArthur Schiwon <blizzz@arthur-schiwon.de>2018-06-29 10:37:46 +0200
commit72340b2230841b33998a52fe62d6cbbf0eeb4fc3 (patch)
tree43e1d3c39f6c6effe07e89fbb7432165d5cdf7b1 /lib/private/Log/Syslog.php
parent0a65e62f29664730ac1aabcb612301be329ceed2 (diff)
downloadnextcloud-server-72340b2230841b33998a52fe62d6cbbf0eeb4fc3.tar.gz
nextcloud-server-72340b2230841b33998a52fe62d6cbbf0eeb4fc3.zip
Added Systemd.log documentation to config.sample.php
Changed name of default system (not systemd) logger from ownCloud to Nextcloud, to be consistent Fixed license per https://github.com/nextcloud/server/pull/9760#discussion_r195026784 Pulled upstream updates Signed-off-by: Johannes Ernst <jernst@indiecomputing.com>
Diffstat (limited to 'lib/private/Log/Syslog.php')
-rw-r--r--lib/private/Log/Syslog.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Log/Syslog.php b/lib/private/Log/Syslog.php
index 90a20026f0e..b652eb4343d 100644
--- a/lib/private/Log/Syslog.php
+++ b/lib/private/Log/Syslog.php
@@ -39,7 +39,7 @@ class Syslog implements IWriter {
];
public function __construct(IConfig $config) {
- openlog($config->getSystemValue('syslog_tag', 'ownCloud'), LOG_PID | LOG_CONS, LOG_USER);
+ openlog($config->getSystemValue('syslog_tag', 'Nextcloud'), LOG_PID | LOG_CONS, LOG_USER);
}
public function __destruct() {