chore(mobile): Add more error log (#2949)

Co-authored-by: alex <alex@pop-os.localdomain>
This commit is contained in:
Alex 2023-06-25 18:59:35 -05:00 committed by GitHub
parent a58482cb2b
commit b015648bfe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 6 deletions

View file

@ -1,4 +1,5 @@
import 'package:immich_mobile/shared/services/api.service.dart';
import 'package:logging/logging.dart';
import 'package:openapi/api.dart';
import 'package:flutter_web_auth/flutter_web_auth.dart';
@ -7,7 +8,7 @@ import 'package:flutter_web_auth/flutter_web_auth.dart';
class OAuthService {
final ApiService _apiService;
final callbackUrlScheme = 'app.immich';
final log = Logger('OAuthService');
OAuthService(this._apiService);
Future<OAuthConfigResponseDto?> getOAuthServerConfig(
@ -33,7 +34,8 @@ class OAuthService {
url: result,
),
);
} catch (e) {
} catch (e, stack) {
log.severe("Error performing oAuthLogin: ${e.toString()}", e, stack);
return null;
}
}