Merge pull request #16725 from nextcloud/bugfix/noid/syslog-di
Fix loading of the syslog logging class
This commit is contained in:
commit
2ac01c0203
2 changed files with 3 additions and 2 deletions
|
@ -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() {
|
||||
|
|
|
@ -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());
|
||||
|
|
Loading…
Reference in a new issue