Merge branch 'master' of https://github.com/ZaPx64/FlaxEngine into ZaPx64-master

This commit is contained in:
Wojtek Figat
2025-03-17 12:10:08 +01:00

View File

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