We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6784822 commit 4dcb81fCopy full SHA for 4dcb81f
1 file changed
lib/network/authentication.dart
@@ -128,7 +128,10 @@ Future<ApiResponse<StatusModel>> sessionStatus() async {
128
} on DioError catch (e) {
129
debugPrint(e.message);
130
} catch (e) {
131
- debugPrint('Error $e');
+ debugPrint('Session Status Error: $e');
132
+ if (e is Error) {
133
+ debugPrint('${e.stackTrace}');
134
+ }
135
}
136
return ApiResponse(
137
error: ApiErrors.getStatusError,
0 commit comments