From 49f2bd077d1b9d022631a885c1f110c65d13ddd4 Mon Sep 17 00:00:00 2001 From: mountain Date: Wed, 23 Jul 2025 11:58:12 +0900 Subject: [PATCH] =?UTF-8?q?=EB=A1=9C=EA=B7=B8=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server.go | 1 + 1 file changed, 1 insertion(+) diff --git a/server.go b/server.go index 8335c10..b3f4ef6 100644 --- a/server.go +++ b/server.go @@ -356,6 +356,7 @@ func ConvertInterface(from interface{}, toType reflect.Type) reflect.Value { return reflect.ValueOf(val) } + logger.Println("ConvertInterface :", fromtype.String(), toType.String(), toType.Kind().String()) return fromrv.Convert(toType) }