Reverted the default syslog tag to avoid breaking existing systems.
This commit is contained in:
parent
ba3f4f118e
commit
32f5073f9f
|
@ -38,7 +38,7 @@ class Syslog {
|
||||||
* Init class data
|
* Init class data
|
||||||
*/
|
*/
|
||||||
public static function init() {
|
public static function init() {
|
||||||
openlog(\OC::$server->getSystemConfig()->getValue("syslog_tag", "Nextcloud"), LOG_PID | LOG_CONS, LOG_USER);
|
openlog(\OC::$server->getSystemConfig()->getValue("syslog_tag", "ownCloud"), LOG_PID | LOG_CONS, LOG_USER);
|
||||||
// Close at shutdown
|
// Close at shutdown
|
||||||
register_shutdown_function('closelog');
|
register_shutdown_function('closelog');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue