diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-07-25 22:26:09 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-07-25 22:26:09 -0700 |
commit | 861a873f7ecf455b9c7833040b2a8163e369e062 (patch) | |
tree | 311d384ed52cb04822b59cf7f6c416e191d80f44 /extension/src/debugPanel.ts | |
parent | f0df0fdc1fb7d8e65e27abe633da1831b8172b35 (diff) | |
download | sncontinue-861a873f7ecf455b9c7833040b2a8163e369e062.tar.gz sncontinue-861a873f7ecf455b9c7833040b2a8163e369e062.tar.bz2 sncontinue-861a873f7ecf455b9c7833040b2a8163e369e062.zip |
checkpoint. Somewhat working, just a bit slow, probably some blocking meilisearch calls still happening
Diffstat (limited to 'extension/src/debugPanel.ts')
-rw-r--r-- | extension/src/debugPanel.ts | 2 |
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, |