This commit is contained in:
J. A. Messias 2024-11-18 17:23:54 -03:00
parent 4bdce5e2ba
commit ef17abbb9a
1 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ class DeepLinkService {
await _showForgotPasswordScreen(email, token);
}
} catch (e, s) {
print('Error handling deep link: $e');
print('Error handling deep link: $e, $s');
log('Error handling', error: e, stackTrace: s);
}
}
@ -74,7 +74,7 @@ class DeepLinkService {
});
});
} catch (e, s) {
print('Error showing forgot password screen: $e');
print('Error showing forgot password screen: $e, $s');
log('Error handling', error: e, stackTrace: s);
}
}