[#438] cli: Drop tracing debug print
ci/woodpecker/pr/pre-commit Pipeline was successful Details
ci/woodpecker/push/pre-commit Pipeline was successful Details

Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
pull/438/head
Dmitrii Stepanov 2023-06-09 14:08:28 +03:00
parent 5b75432ca2
commit 508e2064eb
1 changed files with 0 additions and 2 deletions

View File

@ -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; {