diff --git a/lib/models/fireNotificationsPersist.dart b/lib/models/fireNotificationsPersist.dart index f0d9aa3..477dbe3 100644 --- a/lib/models/fireNotificationsPersist.dart +++ b/lib/models/fireNotificationsPersist.dart @@ -27,7 +27,7 @@ Future> loadFireNotifications() async { } persistFireNotifications(List notif) { - print('Persisting $notif'); + // print('Persisting $notif'); globals.prefs.then((prefs) { List notifAsString = []; notif.where(notNull).toList().forEach((notification) { diff --git a/lib/models/yourLocationPersist.dart b/lib/models/yourLocationPersist.dart index e533d4f..c992974 100644 --- a/lib/models/yourLocationPersist.dart +++ b/lib/models/yourLocationPersist.dart @@ -27,7 +27,7 @@ Future> loadYourLocations() async { } persistYourLocations(List yl) { - print('Persisting $yl'); + // debugPrint('Persisting $yl'); globals.prefs.then((prefs) { List ylAsString = []; yl.where(notNull).toList().forEach((location) {