summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2018-03-06 13:39:49 +0100
committerGitHub <noreply@github.com>2018-03-06 13:39:49 +0100
commit47fa0988d9d36558d29dc2fbbead13331a15f72f (patch)
tree2f0d11cfb1ae457891e779ac5d04ac6839694093 /lib
parented8e4cc78544df8fd4564115946959c0163a3118 (diff)
parentde1f22396154485e66df060c7cd15545ca60b817 (diff)
downloadnextcloud-server-47fa0988d9d36558d29dc2fbbead13331a15f72f.tar.gz
nextcloud-server-47fa0988d9d36558d29dc2fbbead13331a15f72f.zip
Merge pull request #8683 from nextcloud/8474_13
[stable13] Log exceptions that happen when writing the app store reply to storage
Diffstat (limited to 'lib')
-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 [];
}
}