]> source.dussan.org Git - nextcloud-server.git/commitdiff
fix(appstore): disabled appstore log level bump from debug to info backport/47834/stable28 47870/head
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>
Tue, 10 Sep 2024 14:00:56 +0000 (16:00 +0200)
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>
Tue, 10 Sep 2024 14:32:20 +0000 (14:32 +0000)
Co-authored-by: Joas Schilling <213943+nickvergessen@users.noreply.github.com>
Signed-off-by: John Molakvoæ <skjnldsv@users.noreply.github.com>
lib/private/App/AppStore/Fetcher/AppFetcher.php

index 6deeed98f0cafa35cf5ec63731add2352e3cb7c8..e6e35413e92260daabae4adea78392c9bb67f6c5 100644 (file)
@@ -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 [];
                }