diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-02-21 15:21:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-21 15:21:31 +0100 |
commit | f01754a389cf30cbebd391f812e46548dc062cc2 (patch) | |
tree | 6baf68c7b7b2094843abea6ba8d52b4393e4bff7 /lib | |
parent | 3e6e292adaeb8e2b637d8e745cb9b8873c452720 (diff) | |
parent | 2c840ca2781f1618cc498f28f262f95692430537 (diff) | |
download | nextcloud-server-f01754a389cf30cbebd391f812e46548dc062cc2.tar.gz nextcloud-server-f01754a389cf30cbebd391f812e46548dc062cc2.zip |
Merge pull request #8474 from nextcloud/bugfix/ciu-12/log-exceptions-that-happen-when-writing-to-storage
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.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 []; } } |