We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 33e2a51 commit 440ed33Copy full SHA for 440ed33
1 file changed
src/kernel/index.ts
@@ -291,12 +291,12 @@ export class Kernel {
291
return false;
292
} catch (e) {
293
console.error(e);
294
- this.panic(`init program ${init_program} error!`, e.toString());
+ this.panic(`init program ${init_program} error!`, e.toString() + NEWLINE + e.stack);
295
296
}
297
298
299
- this.panic(`Failed to start init program ${init_program}!`, e.toString());
+ this.panic(`Failed to start init program ${init_program}!`, e.toString() + NEWLINE + e.stack);
300
301
302
0 commit comments