ZaP-object-editor-inner-exception-log

This commit is contained in:
Tim
2025-03-15 11:09:02 +01:00
parent 87e423ed48
commit af454b987b

View File

@@ -851,6 +851,11 @@ namespace FlaxEditor
{ {
LogWarning("Exception: " + ex.Message); LogWarning("Exception: " + ex.Message);
LogWarning(ex.StackTrace); LogWarning(ex.StackTrace);
if (ex.InnerException != null)
{
LogWarning("Cause: " + ex.InnerException.Message);
LogWarning(ex.InnerException.StackTrace);
}
} }
/// <summary> /// <summary>