From e43501bbb0de43f4e1370691df683d3982bea27c Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Tue, 31 Oct 2023 09:03:43 -0400 Subject: [PATCH] `@debug` the command being run when `Pkg.test` runs the tests in a subprocess (#3671) --- src/Operations.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Operations.jl b/src/Operations.jl index ec71b28675..686292a6a1 100644 --- a/src/Operations.jl +++ b/src/Operations.jl @@ -2033,6 +2033,7 @@ end # Handles the interrupting of a subprocess gracefully to avoid orphaning function subprocess_handler(cmd::Cmd, ctx, sandbox_ctx, error_msg::String) + @debug "Running command" cmd p = run(pipeline(ignorestatus(cmd), stdout = sandbox_ctx.io, stderr = stderr_f()), wait = false) interrupted = false try