diff --git a/src/indiware_connector.rs b/src/indiware_connector.rs index ce59065..fed14a1 100644 --- a/src/indiware_connector.rs +++ b/src/indiware_connector.rs @@ -30,7 +30,6 @@ pub struct Lesson { } async fn get_timetable_xml(url: &str) -> serde_json::value::Value { - dbg!(format!("{}/{}", config::TIMETABLE_URL, url)); let client = reqwest::Client::new(); let resp = client .get(format!("{}/{}", config::TIMETABLE_URL, url)) @@ -41,7 +40,6 @@ async fn get_timetable_xml(url: &str) -> serde_json::value::Value { .text() .await .unwrap(); - dbg!(&resp); xml_string_to_json(resp, &Config::new_with_defaults()).unwrap() }