summaryrefslogtreecommitdiffstats
path: root/lib/Config/LegacyConfig.php
diff options
context:
space:
mode:
authorSean Molenaar <sean@seanmolenaar.eu>2020-09-28 21:07:24 +0200
committerBenjamin Brahmer <info@b-brahmer.de>2020-09-29 13:02:03 +0200
commitbc01761221384c0bbac0297d38e85bcaa6286a9a (patch)
treebea5acc2db33186982ba94a4270c9eb277c8f0b3 /lib/Config/LegacyConfig.php
parentd00d1ab2a28f428223e52b17052c072c64784016 (diff)
Fix repair step and test it
Signed-off-by: Sean Molenaar <sean@seanmolenaar.eu>
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;
}