exception

This commit is contained in:
ousttrue
2021-03-17 20:52:17 +09:00
parent 6a60ab3ce7
commit 1f9f5e7498

View File

@@ -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);
}
}