diff options
author | Joas Schilling <coding@schilljs.com> | 2018-02-21 14:14:33 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2018-03-06 11:29:05 +0100 |
commit | de1f22396154485e66df060c7cd15545ca60b817 (patch) | |
tree | 4f0bfb8507270d2abe6144aa5562f3be8d852516 /lib/private/App | |
parent | ff7237a09894f9d3c4fd4871592776dfe6049646 (diff) | |
download | nextcloud-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.php | 1 |
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 []; } } |