chore(executor/sandbox): debug log pbReq size
All checks were successful
submodules sync / sync (push) Successful in 57s
build / build (push) Successful in 2m5s
build / trigger-build-image (push) Successful in 9s

This commit is contained in:
张泊明518370910136 2025-03-08 14:45:23 -05:00
parent 792af0bd3c
commit d2325d675f
GPG Key ID: D47306D7062CDA9D

View File

@ -36,7 +36,7 @@ func (e *Sandbox) Run(cmds []stage.Cmd) ([]stage.ExecutorResult, error) {
slog.Debug("sandbox execute", "i", i, "pbCmd size", proto.Size(pbCmd))
}
pbReq := &pb.Request{Cmd: pbCmds}
slog.Info("sandbox execute", "pbReq size", proto.Size(pbReq))
slog.Debug("sandbox execute", "pbReq size", proto.Size(pbReq))
pbRet, err := e.execClient.Exec(context.TODO(), pbReq)
if err != nil {
return nil, err