From 1f9f5e74989d6a5967efc8053e0a310ebcaafe2b Mon Sep 17 00:00:00 2001 From: ousttrue Date: Wed, 17 Mar 2021 20:52:17 +0900 Subject: [PATCH] exception --- Assets/UniGLTF/Tests/UniGLTF/LoadTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Assets/UniGLTF/Tests/UniGLTF/LoadTests.cs b/Assets/UniGLTF/Tests/UniGLTF/LoadTests.cs index acab2b4fb..d479880e1 100644 --- a/Assets/UniGLTF/Tests/UniGLTF/LoadTests.cs +++ b/Assets/UniGLTF/Tests/UniGLTF/LoadTests.cs @@ -44,12 +44,12 @@ namespace UniGLTF if (exception is UniGLTFNotSupportedException ex) { - // skip Debug.LogWarning($"LoadError: {path}: {ex}"); } else { - Debug.LogError($"LoadError: {path}: {exception}"); + Debug.LogError($"LoadError: {path}"); + Debug.LogException(exception); } }