Use logger instead of log

This commit is contained in:
Brian Van Klaveren 2019-05-01 10:19:00 -07:00
parent 350c1cd127
commit 54d91c69cc

View File

@ -1185,7 +1185,7 @@ func TestGetJwtSession(t *testing.T) {
assert.Equal(t, session.IDToken, goodJwt)
jwtProviderServer := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
log.Printf("%#v", r)
logger.Printf("%#v", r)
var payload string
payload = r.Header.Get("Authorization")
if payload == "" {