summaryrefslogtreecommitdiff
path: root/extension/src/debugPanel.ts
diff options
context:
space:
mode:
authorNate Sesti <33237525+sestinj@users.noreply.github.com>2023-07-25 23:52:12 -0700
committerGitHub <noreply@github.com>2023-07-25 23:52:12 -0700
commit2b69bf6f1fc2e06b16b718358ceed4911d6e87c3 (patch)
treec27c630c64f2890698512606e2dd8acac9c0c8b6 /extension/src/debugPanel.ts
parentf0df0fdc1fb7d8e65e27abe633da1831b8172b35 (diff)
parent03da423e5abdf32c5bf9755ffd2e1c7be98e6454 (diff)
downloadsncontinue-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/debugPanel.ts')
-rw-r--r--extension/src/debugPanel.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/extension/src/debugPanel.ts b/extension/src/debugPanel.ts
index 6da79cdc..6dcb588a 100644
--- a/extension/src/debugPanel.ts
+++ b/extension/src/debugPanel.ts
@@ -166,11 +166,13 @@ export function setupDebugPanel(
switch (data.type) {
case "onLoad": {
let sessionId: string;
+ console.log("Running onLoad");
if (typeof sessionIdPromise === "string") {
sessionId = sessionIdPromise;
} else {
sessionId = await sessionIdPromise;
}
+ console.log("Done with onLoad: ", sessionId);
panel.webview.postMessage({
type: "onLoad",
vscMachineId: vscode.env.machineId,