From 34dff571371b255e59fa36c11dd2b5a31bda51b1 Mon Sep 17 00:00:00 2001 From: Anton Tolchanov Date: Thu, 27 Nov 2025 20:03:09 +0000 Subject: [PATCH] feature/posture: log method and full URL for posture identity requests Updates tailscale/corp#34676 Signed-off-by: Anton Tolchanov --- feature/posture/posture.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/feature/posture/posture.go b/feature/posture/posture.go index 8e1945d7d..977e74295 100644 --- a/feature/posture/posture.go +++ b/feature/posture/posture.go @@ -52,7 +52,7 @@ func handleC2NPostureIdentityGet(b *ipnlocal.LocalBackend, w http.ResponseWriter http.Error(w, "posture extension not available", http.StatusInternalServerError) return } - e.logf("c2n: GET /posture/identity received") + e.logf("c2n: %s %s received", r.Method, r.URL.String()) res := tailcfg.C2NPostureIdentityResponse{}