Skip to content

Commit 3e96582

Browse files
author
elchananarb
committed
fix
1 parent 3270b83 commit 3e96582

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

src/cx/cx.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,6 @@ export class Cx implements CxPlatform {
287287

288288
async getAstConfiguration() {
289289
const token = await this.context.secrets.get("authCredential");
290-
console.log("Token from secrets:", token);
291290

292291
if (!token) {
293292
return undefined;

src/cx/cxMock.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1299,7 +1299,6 @@ export class CxMock implements CxPlatform {
12991299

13001300
async getAstConfiguration() {
13011301
const token = await this.context.secrets.get("authCredential");
1302-
console.log("Token from secrets:", token);
13031302

13041303
if (!token) {
13051304
return undefined;

src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ export async function activate(context: vscode.ExtensionContext) {
240240
vscode.commands.registerCommand("ast-results.mockTokenTest", async () => {
241241
const authService = AuthService.getInstance(context);
242242
await authService.saveToken(context, "FAKE_TOKEN_FROM_TEST");
243-
console.log(">> Mock token has been saved to secrets"); // שורת לוג
243+
console.log(">> Mock token has been saved to secrets");
244244
await authService.validateAndUpdateState();
245245
});
246246

0 commit comments

Comments
 (0)