Skip to content

Commit

Permalink
Whoops, didn't know dbg! behaved like that
Browse files Browse the repository at this point in the history
  • Loading branch information
scottmmjackson committed Sep 13, 2023
1 parent 8ddfa7d commit bd2052a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ fn main() {
let mut previous_status_option: Result = Result::None;

loop {
let response = dbg!(client.get(url).send());
let response = client.get(url).send();
previous_status_option = request_loop(response, previous_status_option);
sleep(Duration::from_secs(5));
}
Expand Down

0 comments on commit bd2052a

Please sign in to comment.