From 075b62a74de87a3d8bf13281fb395e9009d450bb Mon Sep 17 00:00:00 2001 From: Sam Plant Date: Thu, 28 Nov 2024 18:14:31 +0000 Subject: [PATCH] fix: remove debuging Signed-off-by: Sam Plant --- pkg/tfc_trigger/project_config.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pkg/tfc_trigger/project_config.go b/pkg/tfc_trigger/project_config.go index 6876dc1..054c4c4 100644 --- a/pkg/tfc_trigger/project_config.go +++ b/pkg/tfc_trigger/project_config.go @@ -43,10 +43,6 @@ func (cfg *ProjectConfig) workspaceForDir(dir string) *TFCWorkspace { if (strings.HasSuffix(dir+"/", wsDir) || strings.HasSuffix(dir, wsDir)) { wsDirDepth := len(strings.Split(wsDir, "/")) - fmt.Println(dir) - fmt.Println(wsDir) - fmt.Println(strings.Split(wsDir, "/")) - fmt.Println(wsDirDepth) if wsDirDepth > longestMatchDepth { longestMatch = ws longestMatchDepth = wsDirDepth