로그 추가

This commit is contained in:
2025-07-23 11:58:12 +09:00
parent 3f2ce41c2a
commit 49f2bd077d

View File

@ -356,6 +356,7 @@ func ConvertInterface(from interface{}, toType reflect.Type) reflect.Value {
return reflect.ValueOf(val) return reflect.ValueOf(val)
} }
logger.Println("ConvertInterface :", fromtype.String(), toType.String(), toType.Kind().String())
return fromrv.Convert(toType) return fromrv.Convert(toType)
} }