diff --git a/Source/Editor/Editor.cs b/Source/Editor/Editor.cs index 7f2351426..8d42ddea1 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("Inner exception:"); + LogWarning(ex.InnerException); + } } ///