Remove debug traces.

This commit is contained in:
Jade Welton
2026-07-10 14:36:38 -07:00
parent d3d6bbe572
commit 5cd2b78c9c
3 changed files with 0 additions and 5 deletions
-2
View File
@@ -116,7 +116,6 @@ export async function getTestExplorerUrl(accountType: TestAccount, options?: Tes
// We can't retrieve AZ CLI credentials from the browser so we get them here.
const token = await getAzureCLICredentialsToken();
const accountName = getAccountName(accountType);
console.log(`DEBUG: Using account name: ${accountName} for account type: ${accountType}`);
const params = new URLSearchParams();
params.set("accountName", accountName);
params.set("resourceGroup", resourceGroupName);
@@ -134,7 +133,6 @@ export async function getTestExplorerUrl(accountType: TestAccount, options?: Tes
//const nosqlRbacToken = getNoSqlRbacToken();
const nosqlRbacToken = process.env.NOSQL_TESTACCOUNT_TOKEN;
console.log(`DEBUG: Using nosqlRbacToken: ${nosqlRbacToken ? "Present" : "Not Present"}`);
const nosqlReadOnlyRbacToken = process.env.NOSQL_READONLY_TESTACCOUNT_TOKEN;
const nosqlContainerCopyRbacToken = process.env.NOSQL_CONTAINERCOPY_TESTACCOUNT_TOKEN;
-2
View File
@@ -141,8 +141,6 @@ async function createCosmosClientForSQLAccount(
? process.env.NOSQL_CONTAINERCOPY_TESTACCOUNT_TOKEN
: "";
console.log(`DEBUG: RBAC Token: ${rbacToken ? "Present" : "Not Present"}`);
if (rbacToken) {
clientOptions.tokenProvider = async (): Promise<string> => {
const AUTH_PREFIX = `type=aad&ver=1.0&sig=`;
-1
View File
@@ -31,7 +31,6 @@ const mongo32RbacToken = urlSearchParams.get("mongo32RbacToken") || process.env.
const mongoReadOnlyRbacToken =
urlSearchParams.get("mongoReadOnlyRbacToken") || process.env.MONGO_READONLY_TESTACCOUNT_TOKEN || "";
const tenantId = urlSearchParams.get("tenantId") || process.env.AZURE_TENANT_ID || "";
console.log(`DEBUG: Using tenantId: ${tenantId ? tenantId : "Not Present"}`);
const initTestExplorer = async (): Promise<void> => {
updateUserContext({