1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2024-12-29 15:11:58 +00:00

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

View file

@ -82,8 +82,12 @@ class AssetService {
_db.writeTxn(() => _db.eTags.put(ETag(id: user.id, value: newETag))); _db.writeTxn(() => _db.eTags.put(ETag(id: user.id, value: newETag)));
} }
return assets.map(Asset.remote).toList(); return assets.map(Asset.remote).toList();
} catch (e, stack) { } catch (error, stack) {
log.severe('Error while getting remote assets', e, stack); log.severe(
'Error while getting remote assets: ${error.toString()}',
error,
stack,
);
return null; return null;
} }
} }
@ -100,8 +104,8 @@ class AssetService {
return await _apiService.assetApi return await _apiService.assetApi
.deleteAsset(DeleteAssetDto(ids: payload)); .deleteAsset(DeleteAssetDto(ids: payload));
} catch (e) { } catch (error, stack) {
debugPrint("Error getAllAsset ${e.toString()}"); log.severe("Error deleteAssets ${error.toString()}", error, stack);
return null; return null;
} }
} }