Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 0 additions & 4 deletions lib/api-helper/build/src/macro_util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down Expand Up @@ -245,8 +243,6 @@ pub async fn __with_ctx<A: auth::ApiAuth + Send>(

// 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."
Expand Down