From 7e464374bb4ce426d96e77bb2dcdcc9964304f59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=99=BD=E8=8C=B6=E6=B8=85=E6=AC=A2?= Date: Mon, 28 Apr 2025 21:11:18 +0800 Subject: [PATCH] remove debug code --- wrapper/json.go | 1 - 1 file changed, 1 deletion(-) diff --git a/wrapper/json.go b/wrapper/json.go index cf93259..edc0aa3 100644 --- a/wrapper/json.go +++ b/wrapper/json.go @@ -75,7 +75,6 @@ func (oj *ownJson) Marshal(marshalType string) ([]byte, error) { // generateStructField 递归解析 func (oj *ownJson) generateStructField(rootPath string, currentName string, currentResult gjson.Result) { structPath := oj.getPath(rootPath, currentName) - fmt.Println(structPath) if currentResult.IsBool() { // bool类型 oj.structBuilder.AddField(structPath, "", true, "", false)