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; }