Skip to content

Commit

Permalink
fix: logging username
Browse files Browse the repository at this point in the history
  • Loading branch information
mshanemc committed Nov 6, 2023
1 parent 159cb92 commit 2a5ae24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/testSession.ts
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ export class TestSession<T extends TestSessionOptions = TestSessionOptions> 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;
}
Expand Down

0 comments on commit 2a5ae24

Please sign in to comment.