Skip to content

Commit

Permalink
fcos-graph-builder: add trace log for requests
Browse files Browse the repository at this point in the history
Found this helpful in debugging.
  • Loading branch information
jlebon committed Nov 1, 2024
1 parent 68de10b commit 564d6ed
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions fcos-graph-builder/src/scraper.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ impl Scraper {
method: reqwest::Method,
url: reqwest::Url,
) -> Fallible<reqwest::RequestBuilder> {
log::trace!("building new request for {url}");
let builder = self.hclient.request(method, url);
Ok(builder)
}
Expand Down

0 comments on commit 564d6ed

Please sign in to comment.