From b40880c85a9cdbd16db978a49e821d8d65802915 Mon Sep 17 00:00:00 2001 From: Yegor Vialov Date: Tue, 5 May 2020 11:33:04 +0000 Subject: [PATCH] Remove some app integration errors --- lib/managers/mobile_app_integration_manager.class.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/managers/mobile_app_integration_manager.class.dart b/lib/managers/mobile_app_integration_manager.class.dart index ec9ce02..746d464 100644 --- a/lib/managers/mobile_app_integration_manager.class.dart +++ b/lib/managers/mobile_app_integration_manager.class.dart @@ -86,7 +86,7 @@ class MobileAppIntegrationManager { registrationData = null; } if (registrationData == null || registrationData.isEmpty) { - Logger.e("No registration data in response. MobileApp integration was removed or broken"); + Logger.w("No registration data in response. MobileApp integration was removed or broken"); _askToRegisterApp(); } else { if (INTEGRATION_VERSION > ConnectionManager().appIntegrationVersion) { @@ -99,10 +99,10 @@ class MobileAppIntegrationManager { completer.complete(); }).catchError((e) { if (e is http.Response && e.statusCode == 410) { - Logger.e("MobileApp integration was removed", skipCrashlytics: true); + Logger.w("MobileApp integration was removed"); _askToRegisterApp(); } else { - Logger.e("Error updating app registration: $e"); + Logger.w("Error updating app registration: $e"); _showError(); } completer.complete();