diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2024-09-10 16:00:56 +0200 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2024-09-10 14:32:20 +0000 |
commit | bae0b8f15e3a4adeb6e41933e11a16f6f6ff5302 (patch) | |
tree | eb16e9dc1140da2406538b60a09086f28e81f6f7 | |
parent | f8f8acef838377b65f9a29f9fc3e7e15cd633adc (diff) | |
download | nextcloud-server-bae0b8f15e3a4adeb6e41933e11a16f6f6ff5302.tar.gz nextcloud-server-bae0b8f15e3a4adeb6e41933e11a16f6f6ff5302.zip |
fix(appstore): disabled appstore log level bump from debug to infobackport/47834/stable28
Co-authored-by: Joas Schilling <213943+nickvergessen@users.noreply.github.com>
Signed-off-by: John Molakvoæ <skjnldsv@users.noreply.github.com>
-rw-r--r-- | lib/private/App/AppStore/Fetcher/AppFetcher.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/App/AppStore/Fetcher/AppFetcher.php b/lib/private/App/AppStore/Fetcher/AppFetcher.php index 6deeed98f0c..e6e35413e92 100644 --- a/lib/private/App/AppStore/Fetcher/AppFetcher.php +++ b/lib/private/App/AppStore/Fetcher/AppFetcher.php @@ -187,7 +187,7 @@ class AppFetcher extends Fetcher { $internetAvailable = $this->config->getSystemValueBool('has_internet_connection', true); if (!$appStoreEnabled || !$internetAvailable) { - $this->logger->debug('AppStore is disabled or this instance has no Internet connection', ['app' => 'appstoreFetcher']); + $this->logger->info('AppStore is disabled or this instance has no Internet connection', ['app' => 'appstoreFetcher']); return []; } |