This commit is contained in:
problematicconsumer
2023-10-05 22:47:24 +03:30
parent 3aa8273210
commit c96a1ebb20
10 changed files with 26 additions and 25 deletions

View File

@@ -40,7 +40,7 @@ class ProfilesRepositoryImpl
Stream<Either<ProfileFailure, Profile?>> watchActiveProfile() {
return profilesDao.watchActiveProfile().handleExceptions(
(error, stackTrace) {
loggy.warning("error watching active profile", error, stackTrace);
loggy.error("error watching active profile", error, stackTrace);
return ProfileUnexpectedFailure(error, stackTrace);
},
);