From babff7b301d2436a2b07c93a6c14b516835ac326 Mon Sep 17 00:00:00 2001 From: "J. A. Messias" Date: Mon, 23 Sep 2024 16:19:27 -0300 Subject: [PATCH] remove logs --- lib/main.dart | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/main.dart b/lib/main.dart index efb1e9ac..270f2dc9 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -55,8 +55,6 @@ Future initializeApp() async { } Future foregroundHandleMessage(RemoteMessage message) async { - log('Foreground message received: ${message.data['click_action']}'); - if (message.data['click_action'] == 'enroll_cond') { AppState().haveLocal = true; AppState().context!.go('/homePage'); @@ -70,7 +68,6 @@ Future foregroundHandleMessage(RemoteMessage message) async { } Future _backgroundHandleMessage(RemoteMessage message) async { - log('Background message received: ${message.data}'); if (message.data['click_action'] == 'enroll_cond') { AppState().haveLocal = true; AppState().context!.go('/homePage');