浏览代码

fix printf

Thibault bui Koechlin 5 年之前
父节点
当前提交
aad2e1421e
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      pkg/exprhelpers/jsonextract.go

+ 1 - 1
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...)
 }