Drop tracing debug print #438

Merged
fyrchik merged 1 commit from dstepanov-yadro/frostfs-node:fix/drop_debugee into master 2023-06-13 07:16:58 +00:00

View file

@ -2,7 +2,6 @@ package common
import ( import (
"context" "context"
"fmt"
"sort" "sort"
"strings" "strings"
@ -48,7 +47,6 @@ func StartClientCommandSpan(cmd *cobra.Command) {
var components sort.StringSlice var components sort.StringSlice
for c := cmd; c != nil; c = c.Parent() { for c := cmd; c != nil; c = c.Parent() {
fmt.Println(c.Name())
components = append(components, c.Name()) components = append(components, c.Name())
} }
for i, j := 0, len(components)-1; i < j; { for i, j := 0, len(components)-1; i < j; {