diff --git a/Source/Editor/Editor.cs b/Source/Editor/Editor.cs index 7f2351426..5503c9db3 100644 --- a/Source/Editor/Editor.cs +++ b/Source/Editor/Editor.cs @@ -851,6 +851,11 @@ namespace FlaxEditor { LogWarning("Exception: " + ex.Message); LogWarning(ex.StackTrace); + if (ex.InnerException != null) + { + LogWarning("Cause: " + ex.InnerException.Message); + LogWarning(ex.InnerException.StackTrace); + } } ///