diff --git a/lib/private/Log/Syslog.php b/lib/private/Log/Syslog.php
index b8fba34d62be4ff034738551caf997f7f56ca5bf..fc536fbd7fcfdfe85f68b769fc91b04de8735599 100644
--- a/lib/private/Log/Syslog.php
+++ b/lib/private/Log/Syslog.php
@@ -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() {
diff --git a/lib/private/Server.php b/lib/private/Server.php
index c25808a9ccc169afb1c92066d963afbc30e8d017..f919e0b4efb697b399603de204dfd0d77f24cb15 100644
--- a/lib/private/Server.php
+++ b/lib/private/Server.php
@@ -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());