From aad2e1421eed65c3be2acc3d7a5f861c6b673894 Mon Sep 17 00:00:00 2001 From: Thibault bui Koechlin Date: Mon, 25 May 2020 11:35:32 +0200 Subject: [PATCH] fix printf --- pkg/exprhelpers/jsonextract.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/exprhelpers/jsonextract.go b/pkg/exprhelpers/jsonextract.go index 682d5ad4e..9a3f4d72e 100644 --- a/pkg/exprhelpers/jsonextract.go +++ b/pkg/exprhelpers/jsonextract.go @@ -32,6 +32,6 @@ func JsonExtract(jsblob string, target string) string { } fullpath := strings.Split(target, ".") - log.Printf("path -> %+v", fullpath) + log.Debugf("extract path %+v", fullpath) return JsonExtractLib(jsblob, fullpath...) }