diff --git a/CHANGELOG.md b/CHANGELOG.md index 0af2d44f99..ed4422cbdd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -50,6 +50,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - **Infra** Kill signal for servers was `SIGINT` instead of `SIGTERM` - **Infra** NATS cluster not getting enabled - **Infra** Redis Kubernetes error when using non-Kubernetes provider +- **api-helper** Remove excess logging ## [23.2.0-rc.1] - 2023-12-01 diff --git a/lib/api-helper/build/src/macro_util.rs b/lib/api-helper/build/src/macro_util.rs index 1c18fd35f4..fde4726a8d 100644 --- a/lib/api-helper/build/src/macro_util.rs +++ b/lib/api-helper/build/src/macro_util.rs @@ -58,8 +58,6 @@ impl __RouterConfig { return true; }; - tracing::info!("trying prefix {prefix}"); - match self.path_segments.last() { Some(segment) if segment == prefix => { self.path_segments.pop(); @@ -245,8 +243,6 @@ pub async fn __with_ctx( // Check auth exists if !optional_auth && bearer_token.is_none() { - tracing::info!("no auth"); - return Err(err_code!( API_UNAUTHORIZED, reason = "No bearer token provided."