1
0
mirror of https://github.com/coalaura/up.git synced 2025-07-17 21:44:35 +00:00

remove bogus logs

This commit is contained in:
Laura
2025-06-20 15:05:05 +02:00
parent 2fcfebe25b
commit 3f6f39471c

View File

@ -102,7 +102,6 @@ func HandleCompleteRequest(ctx *fasthttp.RequestCtx, authorized map[string]ssh.P
ctx.SetStatusCode(fasthttp.StatusBadRequest) ctx.SetStatusCode(fasthttp.StatusBadRequest)
log.Warning("complete: invalid challenge token") log.Warning("complete: invalid challenge token")
log.WarningE(err)
return return
} }
@ -113,7 +112,6 @@ func HandleCompleteRequest(ctx *fasthttp.RequestCtx, authorized map[string]ssh.P
ctx.SetStatusCode(fasthttp.StatusBadRequest) ctx.SetStatusCode(fasthttp.StatusBadRequest)
log.Warning("complete: challenge expired") log.Warning("complete: challenge expired")
log.WarningE(err)
return return
} }
@ -125,7 +123,6 @@ func HandleCompleteRequest(ctx *fasthttp.RequestCtx, authorized map[string]ssh.P
ctx.SetStatusCode(fasthttp.StatusBadRequest) ctx.SetStatusCode(fasthttp.StatusBadRequest)
log.Warning("complete: incorrect public key") log.Warning("complete: incorrect public key")
log.WarningE(err)
return return
} }