From 16fcd645f39f27d32756d20a8128784029b99895 Mon Sep 17 00:00:00 2001 From: Boming Zhang Date: Tue, 29 Apr 2025 20:22:57 -0400 Subject: [PATCH] chore(executor/sandbox): debug log pbRet size --- internal/executor/sandbox/executor.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/executor/sandbox/executor.go b/internal/executor/sandbox/executor.go index b2f9cf8..4a4cb53 100644 --- a/internal/executor/sandbox/executor.go +++ b/internal/executor/sandbox/executor.go @@ -40,6 +40,7 @@ func (e *Sandbox) Run(cmds []stage.Cmd) ([]stage.ExecutorResult, error) { if err != nil { return nil, err } + slog.Debug("sandbox execute", "i", i, "pbRet size", proto.Size(pbRet)) if pbRet.Error != "" { return nil, fmt.Errorf("sandbox execute error: %s", pbRet.Error) }