From b5b5aca69147cc64264bfac15df4f7b7caf641a7 Mon Sep 17 00:00:00 2001 From: Ryan Fleury Date: Wed, 19 Jun 2024 12:07:08 -0700 Subject: [PATCH] log win32 demon resume code --- src/demon/win32/demon_core_win32.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/demon/win32/demon_core_win32.c b/src/demon/win32/demon_core_win32.c index fcf18d1f..39ac97bb 100644 --- a/src/demon/win32/demon_core_win32.c +++ b/src/demon/win32/demon_core_win32.c @@ -1609,8 +1609,13 @@ dmn_ctrl_run(Arena *arena, DMN_CtrlCtx *ctx, DMN_RunCtrls *ctrls) { if(dmn_w32_shared->exception_not_handled && !ctrls->ignore_previous_exception) { + log_infof("using DBG_EXCEPTION_NOT_HANDLED\n"); resume_code = DBG_EXCEPTION_NOT_HANDLED; } + else + { + log_infof("using DBG_CONTINUE\n"); + } dmn_w32_shared->exception_not_handled = 0; }