Merge pull request #16725 from nextcloud/bugfix/noid/syslog-di

Fix loading of the syslog logging class
This commit is contained in:
blizzz 2019-08-14 09:46:48 +02:00 committed by GitHub
commit 2ac01c0203
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -40,7 +40,7 @@ class Syslog extends LogDetails implements IWriter {
public function __construct(SystemConfig $config) {
parent::__construct($config);
openlog($config->getSystemValue('syslog_tag', 'Nextcloud'), LOG_PID | LOG_CONS, LOG_USER);
openlog($config->getValue('syslog_tag', 'Nextcloud'), LOG_PID | LOG_CONS, LOG_USER);
}
public function __destruct() {

View File

@ -449,9 +449,10 @@ class Server extends ServerContainer implements IServerContainer {
$this->registerAlias('AllConfig', \OC\AllConfig::class);
$this->registerAlias(\OCP\IConfig::class, \OC\AllConfig::class);
$this->registerService('SystemConfig', function ($c) use ($config) {
$this->registerService(\OC\SystemConfig::class, function ($c) use ($config) {
return new \OC\SystemConfig($config);
});
$this->registerAlias('SystemConfig', \OC\SystemConfig::class);
$this->registerService(\OC\AppConfig::class, function (Server $c) {
return new \OC\AppConfig($c->getDatabaseConnection());