diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-07-28 19:32:45 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-07-28 19:32:45 -0700 |
commit | 1e81182e7a0402f01ac2475b66fa1ccb1aa51353 (patch) | |
tree | e19bb9df529eef7d5da4deed244f979d88c543b4 /extension/src | |
parent | 9a9b7aae313c8ca3e69acc6b49327fef47a2644d (diff) | |
download | sncontinue-1e81182e7a0402f01ac2475b66fa1ccb1aa51353.tar.gz sncontinue-1e81182e7a0402f01ac2475b66fa1ccb1aa51353.tar.bz2 sncontinue-1e81182e7a0402f01ac2475b66fa1ccb1aa51353.zip |
refactor: :label: make HighlightedCodeContextProvider a subclass of ContextProvider
Diffstat (limited to 'extension/src')
-rw-r--r-- | extension/src/activation/environmentSetup.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/extension/src/activation/environmentSetup.ts b/extension/src/activation/environmentSetup.ts index 04bcd0b6..50a2783a 100644 --- a/extension/src/activation/environmentSetup.ts +++ b/extension/src/activation/environmentSetup.ts @@ -470,7 +470,6 @@ export async function startContinuePythonServer() { shell: true, }); child.stderr.on("data", (data: any) => { - console.log(`stdout: ${data}`); if ( data.includes("Uvicorn running on") || // Successfully started the server data.includes("only one usage of each socket address") || // [windows] The server is already running (probably a simultaneously opened VS Code window) @@ -480,6 +479,8 @@ export async function startContinuePythonServer() { resolve(null); } else if (data.includes("ERROR") || data.includes("Traceback")) { console.log("Error starting Continue python server: ", data); + } else { + console.log(`stdout: ${data}`); } }); child.on("error", (error: any) => { |