fix: Better error in discover

This commit is contained in:
Christian Pauly 2021-02-06 20:41:24 +01:00
commit bf15a3a023
2 changed files with 23 additions and 2 deletions

View file

@ -17,7 +17,7 @@ extension LocalizedExceptionExtension on Object {
if (this is MatrixConnectionException) {
L10n.of(context).noConnectionToTheServer;
}
Logs().d('Something went wrong: ', this);
Logs().w('Something went wrong: ', this);
return L10n.of(context).oopsSomethingWentWrong;
}
}