forked from TrueCloudLab/frostfs-node
[#438] cli: Drop tracing debug print
Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
This commit is contained in:
parent
5b75432ca2
commit
508e2064eb
1 changed files with 0 additions and 2 deletions
|
@ -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; {
|
||||||
|
|
Loading…
Reference in a new issue