From 877ec7300c6b37d56d16099d173d4bcb4b6d9919 Mon Sep 17 00:00:00 2001 From: Manuel Alejandro de Brito Fontes Date: Tue, 10 Aug 2021 15:08:55 -0400 Subject: [PATCH] [workspacekit] Remove debug log to avoid confusing message --- components/workspacekit/cmd/rings.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/components/workspacekit/cmd/rings.go b/components/workspacekit/cmd/rings.go index 29fcf3fdd1af23..4177a47e68d3b3 100644 --- a/components/workspacekit/cmd/rings.go +++ b/components/workspacekit/cmd/rings.go @@ -524,11 +524,9 @@ func findBindMountCandidates(procMounts io.Reader, readlink func(path string) (d // test remaining candidates if they're a Kubernetes configMap or secret ln, err := readlink(filepath.Join(path, "..data")) if err != nil { - log.WithField("path", path).Debug("not bind-mounting because this doesn't look like a configMap") continue } if !strings.HasPrefix(ln, "..") { - log.WithField("path", path).WithField("ln", ln).Debug("not bind-mounting because this doesn't look like a configMap") continue }