From 3ff4de8f5f6473a1920b17c2c368003e3dd5d287 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) (cherry picked from commit e43501bbb0de43f4e1370691df683d3982bea27c) --- src/Operations.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Operations.jl b/src/Operations.jl index 21aa29244b..1daa1a00ab 100644 --- a/src/Operations.jl +++ b/src/Operations.jl @@ -2026,6 +2026,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