DataIOBase添加log
parent
e6a0a20f35
commit
3cfc5a28b0
|
|
@ -66,6 +66,11 @@ public class PlayerPrefsDataIO : DataIOBase
|
|||
try
|
||||
{
|
||||
JObject jObj = JObject.Parse(jsonData);
|
||||
if (null == jObj)
|
||||
{
|
||||
Debug.LogError($"[{nameof(DataIOBase)}]:Json解析失败");
|
||||
return;
|
||||
}
|
||||
|
||||
if (storageMap.TryGetValue(key, out object storageData))
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue