From 2a5ae24c4004fdd79fa5c4889599cfaea48eb3bc Mon Sep 17 00:00:00 2001 From: mshanemc Date: Mon, 6 Nov 2023 11:07:04 -0600 Subject: [PATCH] fix: logging username --- src/testSession.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/testSession.ts b/src/testSession.ts index 3e88c416..89b79dad 100644 --- a/src/testSession.ts +++ b/src/testSession.ts @@ -323,7 +323,7 @@ export class TestSession exte // Don't create orgs if we are supposed to reuse one from the env const orgUsername = env.getString('TESTKIT_ORG_USERNAME'); if (orgUsername) { - dbug(`Not creating a new org. Reusing TESTKIT_ORG_USERNAME of: ${org}`); + dbug(`Not creating a new org. Reusing TESTKIT_ORG_USERNAME of: ${orgUsername}`); this.orgs.set(orgUsername, { username: orgUsername }); continue; }