diff options
author | Nate Sesti <33237525+sestinj@users.noreply.github.com> | 2023-07-25 23:52:12 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-25 23:52:12 -0700 |
commit | 2b69bf6f1fc2e06b16b718358ceed4911d6e87c3 (patch) | |
tree | c27c630c64f2890698512606e2dd8acac9c0c8b6 /extension/src/activation | |
parent | f0df0fdc1fb7d8e65e27abe633da1831b8172b35 (diff) | |
parent | 03da423e5abdf32c5bf9755ffd2e1c7be98e6454 (diff) | |
download | sncontinue-2b69bf6f1fc2e06b16b718358ceed4911d6e87c3.tar.gz sncontinue-2b69bf6f1fc2e06b16b718358ceed4911d6e87c3.tar.bz2 sncontinue-2b69bf6f1fc2e06b16b718358ceed4911d6e87c3.zip |
Merge pull request #296 from continuedev/config-py-2
Config py 2
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( |