log stack trace in signup error
This commit is contained in:
parent
22220beae2
commit
1e490aaea7
1 changed files with 2 additions and 2 deletions
|
|
@ -137,11 +137,11 @@ class SignupPageController extends State<SignupPage> {
|
|||
displayname,
|
||||
);
|
||||
}
|
||||
} catch (e) {
|
||||
} catch (e, s) {
|
||||
//#Pangea
|
||||
const cancelledString = "Exception: Request has been canceled";
|
||||
if (e.toString() != cancelledString) {
|
||||
ErrorHandler.logError(e: e);
|
||||
ErrorHandler.logError(e: e, s: s);
|
||||
error = (e).toLocalizedString(context);
|
||||
}
|
||||
// Pangea#
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue