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.
log
1 parent 0e12d26 commit 1d2d7a1Copy full SHA for 1d2d7a1
src/execute/julia.ts
@@ -486,7 +486,9 @@ async function getJuliaServerConnection(
486
info(
487
"No transport file was found after the timeout. This is the log from the server process:",
488
);
489
+ info("#### BEGIN LOG ####");
490
printJuliaServerLog();
491
+ info("#### END LOG ####");
492
}
493
throw err;
494
@@ -941,9 +943,7 @@ function killJuliaServer() {
941
943
942
944
function printJuliaServerLog() {
945
if (existsSync(juliaServerLogFile())) {
- info("#### BEGIN LOG ####");
946
Deno.stdout.writeSync(Deno.readFileSync(juliaServerLogFile()));
- info("#### END LOG ####");
947
} else {
948
info("Server log file doesn't exist");
949
0 commit comments