summaryrefslogtreecommitdiff
path: root/src/authorization/cedar_authorizer.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/authorization/cedar_authorizer.rs')
-rw-r--r--src/authorization/cedar_authorizer.rs10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/authorization/cedar_authorizer.rs b/src/authorization/cedar_authorizer.rs
index 662aafeb..940794b2 100644
--- a/src/authorization/cedar_authorizer.rs
+++ b/src/authorization/cedar_authorizer.rs
@@ -157,14 +157,12 @@ impl Authorizer for CedarAuthorizer {
let decision = response.decision();
tracing::info!(
- method = %http_request.method,
- host = %http_request.host,
- path = %http_request.path,
- scheme = %http_request.scheme,
- protocol = %http_request.protocol,
decision = ?decision,
diagnostics = ?response.diagnostics(),
- "Processing HTTP request"
+ host = %http_request.host,
+ method = %http_request.method,
+ path = %http_request.path,
+ "http"
);
matches!(decision, cedar_policy::Decision::Allow)