We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d75de07 commit dc67c4eCopy full SHA for dc67c4e
kernel/src/index.ts
@@ -39,7 +39,8 @@ const kernelPlugin: JupyterLiteServerPlugin<void> = {
39
},
40
41
create: async (options: IKernel.IOptions): Promise<IKernel> => {
42
-
+
43
+ console.log("CREATED NEW EMBEDDED KERNEL...")
44
const serviceContainer = new ServiceContainer()
45
await serviceContainer.init();
46
kernel/src/kernel.ts
@@ -40,6 +40,7 @@ export class EmbeddedKernel extends BaseKernel {
}
async interrupt(): Promise<void> {
+ console.log("Kernel Interrupt Requested!")
await this.serviceContainer.deviceService.sendInterrupt();
0 commit comments