From 2c840ca2781f1618cc498f28f262f95692430537 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 21 Feb 2018 14:14:33 +0100 Subject: [PATCH] Log exceptions that happen when writing the app store reply to storage Signed-off-by: Joas Schilling --- lib/private/App/AppStore/Fetcher/Fetcher.php | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/private/App/AppStore/Fetcher/Fetcher.php b/lib/private/App/AppStore/Fetcher/Fetcher.php index 8bf9ca1534..4dbc360c0c 100644 --- a/lib/private/App/AppStore/Fetcher/Fetcher.php +++ b/lib/private/App/AppStore/Fetcher/Fetcher.php @@ -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 []; } }