Add even more nested inner exceptions handling

#3288
This commit is contained in:
Wojtek Figat
2025-03-17 12:11:25 +01:00
parent c12b99b3ce
commit 6c464569f2

View File

@@ -853,8 +853,8 @@ namespace FlaxEditor
LogWarning(ex.StackTrace);
if (ex.InnerException != null)
{
LogWarning("Cause: " + ex.InnerException.Message);
LogWarning(ex.InnerException.StackTrace);
LogWarning("Inner exception:");
LogWarning(ex.InnerException);
}
}