diff --git a/backend/pkg/auth/github.go b/backend/pkg/auth/github.go index 18d875462..1f151d0d0 100644 --- a/backend/pkg/auth/github.go +++ b/backend/pkg/auth/github.go @@ -242,7 +242,7 @@ func (gha *githubAuth) LoginCb(ctx echo.Context) error { httpError(ctx, http.StatusInternalServerError) return nil } - logger.Debug().Msgf("login cb received token %s", token) + logger.Debug().Msgf("login cb received token %v", token) if !token.Valid() { logger.Error().Err(fmt.Errorf("login cb got invalid token")).Send() httpError(ctx, http.StatusInternalServerError)