feat(oidc): add debug log

This commit is contained in:
Adrien Raffin-Caboisse 2022-03-18 09:40:12 +01:00
parent 1c9b1c0579
commit 2e04abf4bb
No known key found for this signature in database
GPG key ID: 7FB60532DEBEAD6A

View file

@ -129,6 +129,10 @@ func (h *Headscale) OIDCCallback(ctx *gin.Context) {
oauth2Token, err := h.oauth2Config.Exchange(context.Background(), code)
if err != nil {
log.Error().
Err(err).
Caller().
Msg("Could not exchange code for token")
ctx.String(http.StatusBadRequest, "Could not exchange code for token")
return