We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be66d82 commit 034617cCopy full SHA for 034617c
crates/openshell-sandbox/src/l7/relay.rs
@@ -264,13 +264,15 @@ where
264
request_count += 1;
265
266
// Log for observability.
267
+ let has_creds = resolver.is_some();
268
info!(
269
host = %ctx.host,
270
port = ctx.port,
271
method = %req.action,
272
path = %req.target,
273
+ credentials_injected = has_creds,
274
request_num = request_count,
- "HTTP relay (credential injection)"
275
+ "HTTP_REQUEST",
276
);
277
278
// Forward request with credential rewriting.
0 commit comments