Reverted the default syslog tag to avoid breaking existing systems.

This commit is contained in:
Thomas Pulzer 2016-07-22 14:38:44 +02:00
parent ba3f4f118e
commit 32f5073f9f
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ class Syslog {
* Init class data
*/
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
register_shutdown_function('closelog');
}