From 508e2064ebfb2e3b7dce2921a7f0791f2757129c Mon Sep 17 00:00:00 2001 From: Dmitrii Stepanov Date: Fri, 9 Jun 2023 14:08:28 +0300 Subject: [PATCH] [#438] cli: Drop tracing debug print Signed-off-by: Dmitrii Stepanov --- cmd/frostfs-cli/internal/common/tracing.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/cmd/frostfs-cli/internal/common/tracing.go b/cmd/frostfs-cli/internal/common/tracing.go index 7a968466..30c2f2b1 100644 --- a/cmd/frostfs-cli/internal/common/tracing.go +++ b/cmd/frostfs-cli/internal/common/tracing.go @@ -2,7 +2,6 @@ package common import ( "context" - "fmt" "sort" "strings" @@ -48,7 +47,6 @@ func StartClientCommandSpan(cmd *cobra.Command) { var components sort.StringSlice for c := cmd; c != nil; c = c.Parent() { - fmt.Println(c.Name()) components = append(components, c.Name()) } for i, j := 0, len(components)-1; i < j; {