diff options
| author | Nate Sesti <33237525+sestinj@users.noreply.github.com> | 2023-07-26 00:56:29 -0700 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-07-26 00:56:29 -0700 | 
| commit | def8e5612cd4c889a2e26d4152fffcf3d694abdf (patch) | |
| tree | ca423625619b9d628651bcc9a395ba8f47fa03a6 /extension/src/activation | |
| parent | b759e2dbfe36b3e8873527b9736d64866da9b604 (diff) | |
| parent | d9a4ed993aad36464776c093333af1a310e5a492 (diff) | |
| download | sncontinue-def8e5612cd4c889a2e26d4152fffcf3d694abdf.tar.gz sncontinue-def8e5612cd4c889a2e26d4152fffcf3d694abdf.tar.bz2 sncontinue-def8e5612cd4c889a2e26d4152fffcf3d694abdf.zip | |
Merge pull request #297 from continuedev/merge-config-py-TO-main
Merge config py to main
Diffstat (limited to 'extension/src/activation')
| -rw-r--r-- | extension/src/activation/activate.ts | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/extension/src/activation/activate.ts b/extension/src/activation/activate.ts index a1d88a31..356d0256 100644 --- a/extension/src/activation/activate.ts +++ b/extension/src/activation/activate.ts @@ -17,7 +17,7 @@ export let ideProtocolClient: IdeProtocolClient;  export async function activateExtension(context: vscode.ExtensionContext) {    extensionContext = context; - +  console.log("Using Continue version: ", getExtensionVersion());    // Before anything else, check whether this is an out-of-date version of the extension    // Do so by grabbing the package.json off of the GitHub respository for now.    fetch(PACKAGE_JSON_RAW_GITHUB_URL) @@ -67,6 +67,7 @@ export async function activateExtension(context: vscode.ExtensionContext) {        }, 2000);      }); +    console.log("Continue server started");      // Initialize IDE Protocol Client      const serverUrl = getContinueServerUrl();      ideProtocolClient = new IdeProtocolClient( | 
