Skip to content

Commit c49438f

Browse files
committed
fix: remove debugging print
1 parent c71d88c commit c49438f

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/servers/http/v1/requests/announce.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -360,8 +360,6 @@ fn extract_compact(query: &Query) -> Result<Option<Compact>, ParseAnnounceQueryE
360360
}
361361

362362
fn extract_numwant(query: &Query) -> Result<Option<u32>, ParseAnnounceQueryError> {
363-
print!("numwant {query:#?}");
364-
365363
match query.get_param(NUMWANT) {
366364
Some(raw_param) => match u32::from_str(&raw_param) {
367365
Ok(numwant) => Ok(Some(numwant)),

0 commit comments

Comments
 (0)