diff --git a/internal/executor/sandbox/executor.go b/internal/executor/sandbox/executor.go index fd313ae..a0bb9fe 100644 --- a/internal/executor/sandbox/executor.go +++ b/internal/executor/sandbox/executor.go @@ -37,6 +37,7 @@ func (e *Sandbox) Run(cmds []stage.Cmd) ([]stage.ExecutorResult, error) { } } pbReq := &pb.Request{Cmd: convertPBCmd(cmds)} + slog.Debug("sandbox execute", "protobuf request", pbReq) pbRet, err := e.execClient.Exec(context.TODO(), pbReq) if err != nil { return nil, err