Skip to content

Commit

Permalink
fix: Adapt log output for golang.org/x/oauth2 v0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mkilchhofer committed Jan 18, 2024
1 parent afad0b6 commit c883b19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/pkg/auth/github.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit c883b19

Please sign in to comment.