Merge pull request #7646 from nextcloud/no_exction_logging_appstore_timeout
Don't spam the log when we could not properly connect to the appstore
This commit is contained in:
commit
a2a4a5596d
1 changed files with 1 additions and 1 deletions
|
@ -170,7 +170,7 @@ abstract class Fetcher {
|
|||
$file->putContent(json_encode($responseJson));
|
||||
return json_decode($file->getContent(), true)['data'];
|
||||
} catch (ConnectException $e) {
|
||||
$this->logger->logException($e, ['app' => 'appstoreFetcher']);
|
||||
$this->logger->info('Could not connect to appstore', ['app' => 'appstoreFetcher']);
|
||||
return [];
|
||||
} catch (\Exception $e) {
|
||||
return [];
|
||||
|
|
Loading…
Reference in a new issue