Skip to content

Commit

Permalink
fix: correct logger import
Browse files Browse the repository at this point in the history
  • Loading branch information
balazsorban44 committed Feb 1, 2021
1 parent ea71a1f commit a15bdc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/lib/pkce-handler.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import pkceChallenge from 'pkce-challenge'
import jwt from '../../lib/jwt'
import * as cookie from '../lib/cookie'
import logger from 'src/lib/logger'
import logger from '../../lib/logger'

const PKCE_LENGTH = 64
const PKCE_CODE_CHALLENGE_METHOD = 'S256' // can be 'plain', not recommended https://tools.ietf.org/html/rfc7636#section-4.2
Expand Down

0 comments on commit a15bdc1

Please sign in to comment.