mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-03-26 06:29:02 +08:00
[unity] Inner exception description text was missing from skeleton import error log.
This commit is contained in:
parent
c24e19783c
commit
c3bb4130fe
@ -226,7 +226,8 @@ namespace Spine.Unity {
|
||||
loadedSkeletonData = SkeletonDataAsset.ReadSkeletonData(skeletonJSON.text, attachmentLoader, skeletonDataScale);
|
||||
} catch (Exception ex) {
|
||||
if (!quiet)
|
||||
Debug.LogError("Error reading skeleton JSON file for SkeletonData asset: " + name + "\n" + ex.Message + "\n" + ex.StackTrace, skeletonJSON);
|
||||
Debug.LogError("Error reading skeleton JSON file for SkeletonData asset: " + name + "\n" +
|
||||
ex.Message + "\n" + ex.InnerException + "\n" + ex.StackTrace, skeletonJSON);
|
||||
}
|
||||
|
||||
#if UNITY_EDITOR
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user