From dbe86439f0abd6889a1e9ffde5b8c7ca3dbd0828 Mon Sep 17 00:00:00 2001
From: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
Date: Tue, 21 Nov 2023 10:39:19 +0900
Subject: [PATCH] pasta: add debug logs

Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
---
 pkg/network/pasta/pasta.go | 1 +
 1 file changed, 1 insertion(+)

diff --git a/pkg/network/pasta/pasta.go b/pkg/network/pasta/pasta.go
index e5d7291a..fadd6c72 100644
--- a/pkg/network/pasta/pasta.go
+++ b/pkg/network/pasta/pasta.go
@@ -159,6 +159,7 @@ func (d *parentDriver) ConfigureNetwork(childPID int, stateDir, detachedNetNSPat
 		logrus.Debugf("killed pasta: %v", wErr)
 		return nil
 	})
+	logrus.Debugf("Executing %v", cmd.Args)
 	if err := cmd.Start(); err != nil {
 		return nil, common.Seq(cleanups), fmt.Errorf("executing %v: %w", cmd, err)
 	}