From eef6d6195f191fb42774e4b7c40eab293324b61c Mon Sep 17 00:00:00 2001 From: Frank Villaro-Dixon Date: Thu, 2 May 2024 12:04:36 +0200 Subject: [PATCH] Remove useless print Signed-off-by: Frank Villaro-Dixon --- src/main.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index 5565ba0..09a4367 100644 --- a/src/main.rs +++ b/src/main.rs @@ -130,9 +130,6 @@ async fn get_elevation( query_opts: Query, Path((lat, lon)): Path<(f64, f64)>, ) -> Response { - println!("lat: {}, lon: {}", lat, lon); - println!("query_opts: {:?}", query_opts); - let ele; match dem::elevation_from_coordinates(&dsr, lat, lon).await { Ok(x) => match x {