Skip to content

Commit 72543d0

Browse files
committed
revert debug logger message
1 parent ccc586a commit 72543d0

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

packages/amazonq/src/lsp/activation.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import { AmazonQLspInstaller, getBundledResourcePaths } from './lspInstaller'
99
import { lspSetupStage, ToolkitError, messages, getLogger } from 'aws-core-vscode/shared'
1010

1111
export async function activate(ctx: vscode.ExtensionContext) {
12-
getLogger('amazonqLsp').debug('Amazon Q LSP extension activated')
1312
try {
1413
await lspSetupStage('all', async () => {
1514
const installResult = await new AmazonQLspInstaller().resolve()

packages/amazonq/src/lsp/client.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,15 +191,13 @@ export async function startLanguageServer(
191191
* Because of this we initialize our Auth client **immediately** after the language server is ready.
192192
* Doing this removes the chance of something else attempting to use the Auth client before it is ready.
193193
*/
194-
getLogger().info(`inside startLanguageServer`)
195194
await initializeAuth(client)
196195

197196
await postStartLanguageServer(extensionContext, client, resourcePaths, toDispose)
198197

199198
return client
200199

201200
async function initializeAuth(client: LanguageClient) {
202-
getLogger().info(`reached initializeAuth`)
203201
AuthUtil.create(new auth2.LanguageClientAuth(client, clientId, encryptionKey))
204202

205203
// Migrate SSO connections from old Auth to the LSP identity server

0 commit comments

Comments
 (0)