Skip to content

Commit

Permalink
fix(appstore): disabled appstore log level bump from debug to info
Browse files Browse the repository at this point in the history
Co-authored-by: Joas Schilling <[email protected]>
Signed-off-by: John Molakvoæ <[email protected]>
  • Loading branch information
2 people authored and backportbot[bot] committed Sep 10, 2024
1 parent 993abfd commit e0a6572
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/private/App/AppStore/Fetcher/AppFetcher.php
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public function get($allowUnstable = false): array {
$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 [];
}

Expand Down

0 comments on commit e0a6572

Please sign in to comment.