diff options
| author | mo khan <mo@mokhan.ca> | 2025-07-11 15:02:59 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-07-11 15:02:59 -0600 |
| commit | 1e5a4e35628324e8b008de1dc061ae110e1dcf67 (patch) | |
| tree | 426c7f5a276c8086f6bbc6a7c2e4327781c01eca /src/authorization/cedar_authorizer.rs | |
| parent | 7eab1fc010c04c76f60a8dd4d8a72572ddd2785a (diff) | |
chore: tidy up request logs
Diffstat (limited to 'src/authorization/cedar_authorizer.rs')
| -rw-r--r-- | src/authorization/cedar_authorizer.rs | 10 |
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) |
