From 77dc9b54f360939ff19a8fe43ec196df6fd2d7f3 Mon Sep 17 00:00:00 2001 From: Mateus Esdras Date: Thu, 11 May 2023 17:32:29 -0300 Subject: [PATCH] rm: remove debugging output (#10554) For example, when no container was being removed, this would print `[]`. Signed-off-by: Mateus Esdras --- pkg/compose/remove.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/compose/remove.go b/pkg/compose/remove.go index 0d684a12b..79511be3f 100644 --- a/pkg/compose/remove.go +++ b/pkg/compose/remove.go @@ -75,7 +75,6 @@ func (s *composeService) Remove(ctx context.Context, projectName string, options stoppedContainers.forEach(func(c moby.Container) { names = append(names, getCanonicalContainerName(c)) }) - fmt.Fprintln(s.stdinfo(), names) if len(names) == 0 { fmt.Fprintln(s.stdinfo(), "No stopped containers")