[fix] 将两处正常日志的级别由错误改为警告
parent
63f1d3b2e4
commit
a74130618e
|
@ -64,7 +64,7 @@ namespace HybridCLR.Editor.Meta
|
|||
TypeDef def = type.ResolveTypeDef();
|
||||
if (def == null)
|
||||
{
|
||||
Debug.LogError($"type:{type} ResolveTypeDef() == null");
|
||||
Debug.LogWarning($"type:{type} ResolveTypeDef() == null");
|
||||
return null;
|
||||
}
|
||||
var klassInst = ctx != null ? sig.GenericArguments.Select(ga => MetaUtil.Inflate(ga, ctx)).ToList() : sig.GenericArguments.ToList();
|
||||
|
|
|
@ -93,7 +93,7 @@ namespace HybridCLR.Editor.Meta
|
|||
methodDef = method.ResolveMethodDef();
|
||||
if (methodDef == null)
|
||||
{
|
||||
Debug.LogError($"method:{method} ResolveMethodDef() == null");
|
||||
Debug.LogWarning($"method:{method} ResolveMethodDef() == null");
|
||||
return null;
|
||||
}
|
||||
if (method is MethodSpec methodSpec)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "com.focus-creative-games.hybridclr_unity",
|
||||
"version": "0.4.3",
|
||||
"version": "0.4.4",
|
||||
"displayName": "HybridCLR",
|
||||
"description": "Unity package for HybridCLR. It includes editor and runtime scripts and assets for HybridCLR",
|
||||
"category": "Runtime",
|
||||
|
|
Loading…
Reference in New Issue