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:34:18 +0000 |
commit | e0a6572e3cdf14c8700d0efe93ad52b242ed0e08 (patch) | |
tree | 315fbc3d125a9edcba9a2f4d145acd6c0eef8730 | |
parent | 993abfdbf17d29cd32200130be3c1d9cde751f49 (diff) | |
download | nextcloud-server-backport/47834/stable30.tar.gz nextcloud-server-backport/47834/stable30.zip |
fix(appstore): disabled appstore log level bump from debug to infobackport/47834/stable30
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 412de722a12..676638f69df 100644 --- a/lib/private/App/AppStore/Fetcher/AppFetcher.php +++ b/lib/private/App/AppStore/Fetcher/AppFetcher.php @@ -155,7 +155,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 []; } |