From ff30d1894a773864ae9dab960d33ada0ebcf06db Mon Sep 17 00:00:00 2001 From: philipp Date: Sat, 4 Mar 2023 13:33:01 +0100 Subject: [PATCH] remove debug statement --- src/models/all.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/models/all.rs b/src/models/all.rs index 95a73d1..1380c84 100644 --- a/src/models/all.rs +++ b/src/models/all.rs @@ -31,7 +31,6 @@ impl DayWithTrips { .all(db) .await .unwrap(); - println!("{:#?}", trips_with_users); for (trip, users) in trips_with_users { trips.push(TripWithUser::new(trip, users.unwrap()));