Skip to content

Commit

Permalink
Merge #1036: Remove debugging print
Browse files Browse the repository at this point in the history
c49438f fix: remove debugging print (Jose Celano)

Pull request description:

  I left it behind.

ACKs for top commit:
  josecelano:
    ACK c49438f

Tree-SHA512: a60519afcca4f20b44bfd2569b799c22737477445810bee243c5a8708abb952b51106fe76121a8d1b39b2a56a191e5ea4cd72d1f57b0cecddf17448246c7654a
  • Loading branch information
josecelano committed Sep 11, 2024
2 parents c71d88c + c49438f commit e8a0073
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/servers/http/v1/requests/announce.rs
Original file line number Diff line number Diff line change
Expand Up @@ -360,8 +360,6 @@ fn extract_compact(query: &Query) -> Result<Option<Compact>, ParseAnnounceQueryE
}

fn extract_numwant(query: &Query) -> Result<Option<u32>, ParseAnnounceQueryError> {
print!("numwant {query:#?}");

match query.get_param(NUMWANT) {
Some(raw_param) => match u32::from_str(&raw_param) {
Ok(numwant) => Ok(Some(numwant)),
Expand Down

0 comments on commit e8a0073

Please sign in to comment.