summaryrefslogtreecommitdiffstats
path: root/lib/private/App
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2018-02-21 14:14:33 +0100
committerRoeland Jago Douma <roeland@famdouma.nl>2018-03-06 11:29:05 +0100
commitde1f22396154485e66df060c7cd15545ca60b817 (patch)
tree4f0bfb8507270d2abe6144aa5562f3be8d852516 /lib/private/App
parentff7237a09894f9d3c4fd4871592776dfe6049646 (diff)
downloadnextcloud-server-de1f22396154485e66df060c7cd15545ca60b817.tar.gz
nextcloud-server-de1f22396154485e66df060c7cd15545ca60b817.zip
Log exceptions that happen when writing the app store reply to storage
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/private/App')
-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 [];
}
}