Is there a way to get more verbose logs on the Editor? Occasionally (more frequently depending on what type of script i modify), the engine basically silently crashes, only giving me an error stacktrace referencing scene/script reloading. I would like to be able to see what object/script this is happening on so that i can either fix my scripts or maybe file a bug report after a lot of testing. I don’t know why it happens, there’s no consistent behavior for it (That i can see), all it has to do is with recompiling and reloading scene. It happens on projects with one script as well, each time a memory address that is either 0x00, 0x02, or seemingly random (I know it’s not but it’s different each time)
This is the type of error that it logs, it has the cpp logs but if it’s breaking on my scripts/actors, i would like to know what so i can help figure out why.
[ 00:00:02.573 ]: [Error] Critical error! Reason: Unhandled exception: EXCEPTION_ACCESS_VIOLATION 0x65acf38
[ 00:00:03.086 ]: [Error] Stack trace:
[ 00:00:03.086 ]: [Error] at 0x7ffa065acf38
[ 00:00:03.086 ]: [Error] at FlaxEditor.exe!ManagedBinaryModule::ManagedObjectSpawn() in A:\FlaxEngine\Flax1-11\Source\Engine\Scripting\BinaryModule.cpp:line 806
[ 00:00:03.086 ]: [Error] at FlaxEditor.exe!SceneObjectsFactory::Spawn() in A:\FlaxEngine\Flax1-11\Source\Engine\Level\SceneObjectsFactory.cpp:line 199
[ 00:00:03.086 ]: [Error] at FlaxEditor.exe!SceneObjectsFactory::Spawn() in A:\FlaxEngine\Flax1-11\Source\Engine\Level\SceneObjectsFactory.cpp:line 176
[ 00:00:03.086 ]: [Error] at FlaxEditor.exe!<lambda_51b51e3dddc97c73ce91e9b5f086e174>::operator()() in A:\FlaxEngine\Flax1-11\Source\Engine\Level\Level.cpp:line 1207
[ 00:00:03.086 ]: [Error] at FlaxEditor.exe!<lambda_626aad1cadc6992835300addd68d2a3f>::operator()() in A:\FlaxEngine\Flax1-11\Source\Engine\Core\Delegate.h:line 198
[ 00:00:03.086 ]: [Error] at FlaxEditor.exe!<lambda_626aad1cadc6992835300addd68d2a3f>::<lambda_invoker_cdecl>() in A:\FlaxEngine\Flax1-11\Source\Engine\Core\Delegate.h:line 199
[ 00:00:03.086 ]: [Error] at FlaxEditor.exe!Function<void __cdecl(int)>::operator()() in A:\FlaxEngine\Flax1-11\Source\Engine\Core\Delegate.h:line 272
[ 00:00:03.086 ]: [Error] at FlaxEditor.exe!JobSystemThread::Run() in A:\FlaxEngine\Flax1-11\Source\Engine\Threading\JobSystem.cpp:line 215
[ 00:00:03.086 ]: [Error] at FlaxEditor.exe!ThreadBase::Run() in A:\FlaxEngine\Flax1-11\Source\Engine\Platform\Base\ThreadBase.cpp:line 97
[ 00:00:03.086 ]: [Error] at FlaxEditor.exe!Win32Thread::ThreadProc() in A:\FlaxEngine\Flax1-11\Source\Engine\Platform\Win32\Win32Thread.cpp:line 98
[ 00:00:03.086 ]: [Error] at KERNEL32.DLL!0x7ffaee507374
[ 00:00:03.086 ]: [Error] at ntdll.dll!0x7ffaeeefcc91
Thank you.