Log exceptions that happen when writing the app store reply to storage

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2018-02-21 14:14:33 +01:00 committed by Roeland Jago Douma
parent ac8d572102
commit 22b98ddd41
No known key found for this signature in database
GPG Key ID: F941078878347C0C
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 [];
}
}