File tree Expand file tree Collapse file tree 3 files changed +1
-3
lines changed Expand file tree Collapse file tree 3 files changed +1
-3
lines changed Original file line number Diff line number Diff 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 ;
Original file line number Diff line number Diff 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 ;
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments