feat(executor): debug log protobuf cmds
This commit is contained in:
parent
d9fd85d4a5
commit
8bc1b8284d
|
@ -36,8 +36,9 @@ func (e *Sandbox) Run(cmds []stage.Cmd) ([]stage.ExecutorResult, error) {
|
|||
}
|
||||
}
|
||||
}
|
||||
pbReq := &pb.Request{Cmd: convertPBCmd(cmds)}
|
||||
slog.Debug("sandbox execute", "protobuf request", pbReq)
|
||||
pbCmds := convertPBCmd(cmds)
|
||||
slog.Debug("sandbox execute", "protobuf cmds", pbCmds)
|
||||
pbReq := &pb.Request{Cmd: pbCmds}
|
||||
pbRet, err := e.execClient.Exec(context.TODO(), pbReq)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
|
|
Loading…
Reference in New Issue
Block a user