Removed log

This commit is contained in:
Vicente J. Ruiz Jurado 2018-08-03 20:23:16 +02:00
parent 0b50a90efb
commit 4e50f5e8f7
2 changed files with 2 additions and 2 deletions

View file

@ -27,7 +27,7 @@ Future<List<FireNotification>> loadFireNotifications() async {
} }
persistFireNotifications(List<FireNotification> notif) { persistFireNotifications(List<FireNotification> notif) {
print('Persisting $notif'); // print('Persisting $notif');
globals.prefs.then((prefs) { globals.prefs.then((prefs) {
List<String> notifAsString = []; List<String> notifAsString = [];
notif.where(notNull).toList().forEach((notification) { notif.where(notNull).toList().forEach((notification) {

View file

@ -27,7 +27,7 @@ Future<List<YourLocation>> loadYourLocations() async {
} }
persistYourLocations(List<YourLocation> yl) { persistYourLocations(List<YourLocation> yl) {
print('Persisting $yl'); // debugPrint('Persisting $yl');
globals.prefs.then((prefs) { globals.prefs.then((prefs) {
List<String> ylAsString = []; List<String> ylAsString = [];
yl.where(notNull).toList().forEach((location) { yl.where(notNull).toList().forEach((location) {