From 8d826d45d1220928b4dc5a72b486bd78be6adf96 Mon Sep 17 00:00:00 2001 From: Pasquale Congiusti Date: Sat, 14 Dec 2024 14:53:43 +0100 Subject: [PATCH] chore(cmd): remove debug trace leftover --- pkg/cmd/bind.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/cmd/bind.go b/pkg/cmd/bind.go index d4dd5aa647..d65df8db44 100644 --- a/pkg/cmd/bind.go +++ b/pkg/cmd/bind.go @@ -281,7 +281,6 @@ func (o *bindCmdOptions) run(cmd *cobra.Command, args []string) error { // for example, `-t camel.properties=a=1 -t camel.properties=b=2` would convert into annotation // `camel.properties=[a=1,b=2]“. func maybeBuildArrayNotation(array, value string) string { - fmt.Println(array, value) if array == "" { return value }