Skip to content

Commit 12e8f8b

Browse files
committed
chore: remove console logging
1 parent 2af9e84 commit 12e8f8b

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

src/cmap/auth/mongodb_oidc/azure_service_workflow.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,9 @@ export class AzureServiceWorkflow extends ServiceWorkflow {
6262
if (isEndpointResultInvalid(response)) {
6363
throw new MongoAzureError(ENDPOINT_RESULT_ERROR);
6464
}
65-
console.log('response', response);
6665
this.cache.addEntry(tokenAudience, response);
6766
token = response.access_token;
6867
}
69-
console.log('token', token);
7068
return token;
7169
}
7270
}
@@ -76,7 +74,6 @@ export class AzureServiceWorkflow extends ServiceWorkflow {
7674
*/
7775
async function getAzureTokenData(tokenAudience: string): Promise<AzureAccessToken> {
7876
const url = `${AZURE_BASE_URL}&resource=${tokenAudience}`;
79-
console.log('url', url);
8077
const data = await request(url, {
8178
json: true,
8279
headers: AZURE_HEADERS

test/manual/mongodb_oidc_azure.prose.test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,6 @@ describe('OIDC Auth Spec Prose Tests', function () {
102102
const commandFailedEvents: CommandFailedEvent[] = [];
103103

104104
const commandStartedListener = event => {
105-
console.log(event);
106105
if (event.commandName === 'find') {
107106
commandStartedEvents.push(event);
108107
}

0 commit comments

Comments
 (0)