Hi
You can disable the watchdog and, in its place, use a HW timer with the same delay (re-triggered at the same locations as you would re-trigger the watchdog).
When this HW timer interrupt fires its ISR (assuming it still works) can be handled as if it were the ISR of the watchdog. (It is also possible to use both watchdog and a HW timer with a very slightly shorter delay so that the HW timer effectively functions as a "watchdog interrupt").
Generally watchdog resets are due to the code being stuck in a loop (forever) or due to a hard fault. Therefore it may be simplest to simply disable the watchdog, wait for the processor to stop working 'normally' and then pause the debugger to 'see what is going on'.
Regards
Mark