Skip to content

Commit

Permalink
Remove parameter console logging
Browse files Browse the repository at this point in the history
  • Loading branch information
tothszabi committed Sep 10, 2024
1 parent 07a9167 commit 288ec87
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions cli/command_analytics.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,7 @@ func logCommandParameters(c *cli.Context) {

commandName := "unknown"
subcommandName := ""

fmt.Println(c.Command.FullName())


if names := strings.Split(c.Command.FullName(), " "); 0 < len(names) {
commandName = names[0]
if 1 < len(names) {
Expand Down

0 comments on commit 288ec87

Please sign in to comment.