Current Behavior:
Currently, stack trace logging is performed only at the very last moment, once the breakpoint is reached. This delays data capture, meaning the recorded frames may be inaccurate if the objects they reference are modified during execution before the breakpoint is hit.
Proposed Solution & Issue:
The CallstackExtractor class includes a method designed to collect and serialize frames in real-time during execution, which would prevent this state corruption. However, enabling this method currently causes an event overload on the Virtual Machine (VM), leading to its unexpected termination.