Skip to content

Commit 75f50e1

Browse files
committed
Verbose printings
1 parent c2929a0 commit 75f50e1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

gdbfrontend.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@
3232

3333
gdb = importlib.import_module("gdb")
3434

35-
try:
36-
gdb.execute("set confirm off")
37-
gdb.execute("set non-stop off")
38-
gdb.execute("set pagination off")
39-
except:
40-
pass
35+
try: gdb.execute("set confirm off")
36+
except gdb.error as e: util.verbose(e)
37+
try: gdb.execute("set non-stop off")
38+
except gdb.error as e: util.verbose(e)
39+
try: gdb.execute("set pagination off")
40+
except gdb.error as e: util.verbose(e)
4141

4242
gdb.execute("shell tmux set-option status off")
4343
gdb.execute("shell tmux set-option mouse on")

0 commit comments

Comments
 (0)