summaryrefslogtreecommitdiffstats
path: root/lib/Config/LegacyConfig.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Config/LegacyConfig.php')
-rw-r--r--lib/Config/LegacyConfig.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/Config/LegacyConfig.php b/lib/Config/LegacyConfig.php
index 71e19acfa..370638843 100644
--- a/lib/Config/LegacyConfig.php
+++ b/lib/Config/LegacyConfig.php
@@ -39,8 +39,7 @@ class LegacyConfig
public function __construct(
?Folder $fileSystem,
- LoggerInterface $logger,
- $LoggerParameters
+ LoggerInterface $logger
) {
$this->fileSystem = $fileSystem;
$this->autoPurgeMinimumInterval = 60;
@@ -51,7 +50,7 @@ class LegacyConfig
$this->useCronUpdates = true;
$this->logger = $logger;
$this->exploreUrl = '';
- $this->loggerParams = $LoggerParameters;
+ $this->loggerParams = ['app' => Application::NAME];
$this->updateInterval = 3600;
}