From e637bea2ad851205f7dea94778ada562934b702e Mon Sep 17 00:00:00 2001 From: lauxinchi Date: Mon, 30 Sep 2024 10:13:49 +0800 Subject: [PATCH] add log --- pkg/invoke/exec.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/invoke/exec.go b/pkg/invoke/exec.go index a5e015fc..d56beac6 100644 --- a/pkg/invoke/exec.go +++ b/pkg/invoke/exec.go @@ -124,6 +124,7 @@ func ExecPluginWithResult(ctx context.Context, pluginPath string, netconf []byte } stdoutBytes, err := exec.ExecPlugin(ctx, pluginPath, netconf, args.AsEnv()) + fmt.Println("this is real err:", err, string(stdoutBytes)) if err != nil { return nil, err }