Merge pull request #8682 from nextcloud/8474_12

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

View File

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