diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-01-02 09:40:03 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2018-01-02 09:40:03 +0100 |
commit | c5f852d90c57c71cd862fbffe46efc642a617237 (patch) | |
tree | 89c1577fcd70612b8299375d331187585360cc6b /lib/private/App | |
parent | a2a4a5596d757fccbf3b2894fe5647611a7a0821 (diff) | |
download | nextcloud-server-c5f852d90c57c71cd862fbffe46efc642a617237.tar.gz nextcloud-server-c5f852d90c57c71cd862fbffe46efc642a617237.zip |
Also log exception for failed appstore request
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'lib/private/App')
-rw-r--r-- | lib/private/App/AppStore/Fetcher/Fetcher.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/private/App/AppStore/Fetcher/Fetcher.php b/lib/private/App/AppStore/Fetcher/Fetcher.php index cd33d228c4b..8bf9ca15349 100644 --- a/lib/private/App/AppStore/Fetcher/Fetcher.php +++ b/lib/private/App/AppStore/Fetcher/Fetcher.php @@ -36,6 +36,7 @@ use OCP\Files\NotFoundException; use OCP\Http\Client\IClientService; use OCP\IConfig; use OCP\ILogger; +use OCP\Util; abstract class Fetcher { const INVALIDATE_AFTER_SECONDS = 300; @@ -170,7 +171,7 @@ abstract class Fetcher { $file->putContent(json_encode($responseJson)); return json_decode($file->getContent(), true)['data']; } catch (ConnectException $e) { - $this->logger->info('Could not connect to appstore', ['app' => 'appstoreFetcher']); + $this->logger->logException($e, ['app' => 'appstoreFetcher', 'level' => Util::INFO, 'message' => 'Could not connect to appstore']); return []; } catch (\Exception $e) { return []; |