Merge pull request #8683 from nextcloud/8474_13

[stable13] Log exceptions that happen when writing the app store reply to storage
This commit is contained in:
Morris Jobke 2018-03-06 13:39:49 +01:00 committed by GitHub
commit 47fa0988d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -174,6 +174,7 @@ abstract class Fetcher {
$this->logger->logException($e, ['app' => 'appstoreFetcher', 'level' => Util::INFO, 'message' => 'Could not connect to appstore']);
return [];
} catch (\Exception $e) {
$this->logger->logException($e, ['app' => 'appstoreFetcher', 'level' => Util::INFO]);
return [];
}
}