Merge pull request #4372 from matrix-org/dbkr/search_fail_logging

Fix logging for failed searches
pull/21833/head
David Baker 2020-04-09 16:27:08 +01:00 committed by GitHub
commit 5dfcfb2147
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1212,7 +1212,7 @@ export default createReactClass({
});
}, function(error) {
const ErrorDialog = sdk.getComponent("dialogs.ErrorDialog");
console.error("Search failed: " + error);
console.error("Search failed", error);
Modal.createTrackedDialog('Search failed', '', ErrorDialog, {
title: _t("Search failed"),
description: ((error && error.message) ? error.message : _t("Server may be unavailable, overloaded, or search timed out :(")),