Skip to content

Commit 1d2d7a1

Browse files
committed
don't print BEGIN END markers for log command itself
1 parent 0e12d26 commit 1d2d7a1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/execute/julia.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,9 @@ async function getJuliaServerConnection(
486486
info(
487487
"No transport file was found after the timeout. This is the log from the server process:",
488488
);
489+
info("#### BEGIN LOG ####");
489490
printJuliaServerLog();
491+
info("#### END LOG ####");
490492
}
491493
throw err;
492494
}
@@ -941,9 +943,7 @@ function killJuliaServer() {
941943

942944
function printJuliaServerLog() {
943945
if (existsSync(juliaServerLogFile())) {
944-
info("#### BEGIN LOG ####");
945946
Deno.stdout.writeSync(Deno.readFileSync(juliaServerLogFile()));
946-
info("#### END LOG ####");
947947
} else {
948948
info("Server log file doesn't exist");
949949
}

0 commit comments

Comments
 (0)