From 7131d667ab3db34fd42c6826f64b333af23ddef3 Mon Sep 17 00:00:00 2001 From: Lectom C Han Date: Thu, 12 Feb 2026 10:09:32 +0900 Subject: [PATCH] =?UTF-8?q?=EC=8A=A4=ED=85=8C=EC=9D=B4=EC=A7=95=20?= =?UTF-8?q?=EC=A7=84=EB=8B=A8=20=EB=A1=9C=EA=B7=B8=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/internal/service/ory_service.go | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/internal/service/ory_service.go b/backend/internal/service/ory_service.go index bab1e8c0..df0c6e15 100644 --- a/backend/internal/service/ory_service.go +++ b/backend/internal/service/ory_service.go @@ -319,6 +319,7 @@ func (o *OryProvider) submitLoginCodeInit(loginID, returnTo string) (*domain.Lin respBody, _ := io.ReadAll(io.LimitReader(resp.Body, 4096)) if resp.StatusCode >= 300 { + slog.Warn("Ory link login init failed", "loginID", loginID, "flow_id", flowID, "status", resp.StatusCode, "body", string(respBody)) init, ok := parseKratosLinkLoginResponse(flowID, respBody) if ok { slog.Info("Ory link login initiated with non-2xx response", "loginID", loginID, "flow_id", flowID, "status", resp.StatusCode)