summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2018-02-21 14:14:33 +0100
committerJoas Schilling <coding@schilljs.com>2018-02-21 14:14:33 +0100
commit2c840ca2781f1618cc498f28f262f95692430537 (patch)
tree4baf6a1e9c20cdadbd25e3328e9376d7632dede5
parent4b50fe7560444f4c42ba04ea4a034119af907db1 (diff)
downloadnextcloud-server-2c840ca2781f1618cc498f28f262f95692430537.tar.gz
nextcloud-server-2c840ca2781f1618cc498f28f262f95692430537.zip
Log exceptions that happen when writing the app store reply to storage
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--lib/private/App/AppStore/Fetcher/Fetcher.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/private/App/AppStore/Fetcher/Fetcher.php b/lib/private/App/AppStore/Fetcher/Fetcher.php
index 8bf9ca15349..4dbc360c0c4 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 [];
}
}