Skip to content

Commit c883b19

Browse files
committed
fix: Adapt log output for golang.org/x/oauth2 v0.12.0
1 parent afad0b6 commit c883b19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/pkg/auth/github.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ func (gha *githubAuth) LoginCb(ctx echo.Context) error {
242242
httpError(ctx, http.StatusInternalServerError)
243243
return nil
244244
}
245-
logger.Debug().Msgf("login cb received token %s", token)
245+
logger.Debug().Msgf("login cb received token %v", token)
246246
if !token.Valid() {
247247
logger.Error().Err(fmt.Errorf("login cb got invalid token")).Send()
248248
httpError(ctx, http.StatusInternalServerError)

0 commit comments

Comments
 (0)