From b392843d9fb5b194b12fa9239a699c33a5bec994 Mon Sep 17 00:00:00 2001 From: Disconnect3d Date: Wed, 11 Jul 2018 22:36:16 +0200 Subject: [PATCH] Inform about `exception-debugger` on exceptions (#501) Instead of hiding this feature just for devs who reads our dev guide or just knows that this exists lets make pwndbg development great again and show this command to the world! --- pwndbg/exception.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pwndbg/exception.py b/pwndbg/exception.py index 923a212af..4c593a894 100644 --- a/pwndbg/exception.py +++ b/pwndbg/exception.py @@ -68,7 +68,9 @@ def handle(name='Error'): print(message.notice('For more info invoke `') + message.hint('set exception-verbose on') + - message.notice('` and rerun the command')) + message.notice('` and rerun the command\nor debug it by yourself with `') + + message.hint('set exception-debugger on') + + message.notice('`')) # Break into the interactive debugger if debug: