Skip to content

Commit

Permalink
fix: clean logs
Browse files Browse the repository at this point in the history
  • Loading branch information
devthejo committed Mar 5, 2025
1 parent dd9b19a commit 88c56ec
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ export function ProConnectProvider<P extends ProConnectProfile>(
checks: ["pkce", "state"],
userinfo: {
async request({ tokens: { access_token }, client }) {
logger.child({ tokens: { access_token } }).info(`userinfo request`);
// logger.child({ tokens: { access_token } }).info(`userinfo request`);
logger.info(`userinfo request`);
if (!access_token) {
throw new Error("ProConnectProvider - Userinfo request is missing access_token.");
}
Expand Down

0 comments on commit 88c56ec

Please sign in to comment.