From 0bdd6043952789915f2ccb2e90c2f79bad19febb Mon Sep 17 00:00:00 2001 From: Liam Beckman Date: Fri, 26 Jul 2024 18:57:34 -0700 Subject: [PATCH] Add container command event to match existing pattern --- worker/docker.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/worker/docker.go b/worker/docker.go index 527243f2..56072461 100644 --- a/worker/docker.go +++ b/worker/docker.go @@ -95,6 +95,9 @@ func (docker Docker) executeCommand(ctx context.Context, commandTemplate string, } } + if usingCommand { + docker.Event.Info("Running command", "cmd", cmd.String()) + } return cmd.Run() }