From 8b22b945821cba3f2e2cc633fc61cf8b4c2b3621 Mon Sep 17 00:00:00 2001 From: David Pedersen Date: Wed, 12 Apr 2023 09:19:00 +0200 Subject: [PATCH] Remove "PathDeserializationError" debug message --- axum/src/extract/path/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/axum/src/extract/path/mod.rs b/axum/src/extract/path/mod.rs index 0932d9ce..189e476e 100644 --- a/axum/src/extract/path/mod.rs +++ b/axum/src/extract/path/mod.rs @@ -201,7 +201,6 @@ impl PathDeserializationError { #[track_caller] pub(super) fn unsupported_type(name: &'static str) -> Self { - println!("{}", std::panic::Location::caller()); Self::new(ErrorKind::UnsupportedType { name }) } }