From 87cb2f0bfdd11f99d30424507728b899dd48b27a Mon Sep 17 00:00:00 2001 From: Alex Steel <130377221+asteel-gsa@users.noreply.github.com> Date: Fri, 3 May 2024 13:17:14 -0400 Subject: [PATCH] Update logger to output the executable --- internal/pipes/mc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/pipes/mc.go b/internal/pipes/mc.go index 7f72bb2..a5c1668 100644 --- a/internal/pipes/mc.go +++ b/internal/pipes/mc.go @@ -55,7 +55,7 @@ func McWrite(in_pipe *script.Pipe, if util.IsDebugLevel("DEBUG") { fmt.Printf("command: %s\n", combined) } - logging.Logger.Printf("MC mc targeting %s", path) + logging.Logger.Printf("MC "+getExecutable()+" targeting %s", path) return in_pipe.Exec(combined) }