diff options
| author | Pinapelz <yukais@pinapelz.com> | 2024-08-22 21:35:26 -0700 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2024-08-22 21:35:26 -0700 |
| commit | c00af121ac17a7446ac1aa0d82e263f4606227c4 (patch) | |
| tree | bed651a6f9782d92be806ffc3f92e6ec77b2fb76 | |
| parent | 9dfb99ff7ad044efc79a3ed95bd96949d47538f2 (diff) | |
remove debug print statements from eorzean_weather
| -rw-r--r-- | src/eorzean_weather.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/eorzean_weather.rs b/src/eorzean_weather.rs index bb94c5d..4db4cb2 100644 --- a/src/eorzean_weather.rs +++ b/src/eorzean_weather.rs @@ -252,11 +252,9 @@ pub fn find_next_weather_occurance<T: ToUnixTimestamp>(zone_name: &str, current_ let current_epoch = current_time.to_unix_timestamp(); let mut current_interval = 1; let mut next_weather = calculate_forecast(zone_name, current_epoch, current_interval); - println!("Found next weather {:?}", next_weather); while (next_weather.weather != target_weather) { current_interval += 1; next_weather = calculate_forecast(zone_name, current_epoch, current_interval); - println!("Found next weather {:?}", next_weather); } next_weather }
\ No newline at end of file |
