Browse Source

Log exceptions that happen when writing the app store reply to storage

Signed-off-by: Joas Schilling <coding@schilljs.com>
Joas Schilling 6 years ago
parent
commit
2c840ca278
1 changed files with 1 additions and 0 deletions
  1. 1 0
      lib/private/App/AppStore/Fetcher/Fetcher.php

+ 1 - 0
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 [];
 		}
 	}