Skip to content
Snippets Groups Projects
Unverified Commit 2c840ca2 authored by Joas Schilling's avatar Joas Schilling
Browse files

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

parent 4b50fe75
No related branches found
No related tags found
No related merge requests found
...@@ -174,6 +174,7 @@ abstract class Fetcher { ...@@ -174,6 +174,7 @@ abstract class Fetcher {
$this->logger->logException($e, ['app' => 'appstoreFetcher', 'level' => Util::INFO, 'message' => 'Could not connect to appstore']); $this->logger->logException($e, ['app' => 'appstoreFetcher', 'level' => Util::INFO, 'message' => 'Could not connect to appstore']);
return []; return [];
} catch (\Exception $e) { } catch (\Exception $e) {
$this->logger->logException($e, ['app' => 'appstoreFetcher', 'level' => Util::INFO]);
return []; return [];
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment