Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
Threated authored Sep 30, 2024
1 parent 0d0042a commit 35d9cf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proxy/src/auth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ impl<S: Send + Sync> FromRequestParts<S> for AuthenticatedApp {
};
let api_key_claimed = auth.next().ok_or(UNAUTH_ERR)?;
if api_key_claimed != api_key_actual {
warn!("App {client_id} provided the wrong api key");
warn!("App {client_id} provided the wrong api key. Claimed: {api_key_claimed} Actual: {api_key_actual}");
return Err(UNAUTH_ERR);
}
debug!("Request authenticated (ClientID {})", client_id);
Expand Down

0 comments on commit 35d9cf8

Please sign in to comment.