Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove redundant error logging (#7158)
The `_fetchAll` function is expected to return values, so catching errors and logging them only results in an additional error at the place where `_fetchAll` is called. It's better instead to let the error get thrown as normal. In this particular case `_fetchAll` is only called in once place. The error is still correctly caught and logged (in the `_update` function)
- Loading branch information