From 3f6f39471ced6c12614536b43c3a0a0801c2e3ef Mon Sep 17 00:00:00 2001 From: Laura Date: Fri, 20 Jun 2025 15:05:05 +0200 Subject: [PATCH] remove bogus logs --- server/protocol.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/server/protocol.go b/server/protocol.go index e0aad88..eca04dc 100644 --- a/server/protocol.go +++ b/server/protocol.go @@ -102,7 +102,6 @@ func HandleCompleteRequest(ctx *fasthttp.RequestCtx, authorized map[string]ssh.P ctx.SetStatusCode(fasthttp.StatusBadRequest) log.Warning("complete: invalid challenge token") - log.WarningE(err) return } @@ -113,7 +112,6 @@ func HandleCompleteRequest(ctx *fasthttp.RequestCtx, authorized map[string]ssh.P ctx.SetStatusCode(fasthttp.StatusBadRequest) log.Warning("complete: challenge expired") - log.WarningE(err) return } @@ -125,7 +123,6 @@ func HandleCompleteRequest(ctx *fasthttp.RequestCtx, authorized map[string]ssh.P ctx.SetStatusCode(fasthttp.StatusBadRequest) log.Warning("complete: incorrect public key") - log.WarningE(err) return }