diff options
author | Jonathan Abrahams <jonathan@mongodb.com> | 2017-04-07 10:43:19 -0400 |
---|---|---|
committer | Jonathan Abrahams <jonathan@mongodb.com> | 2017-04-07 10:45:46 -0400 |
commit | 83f666c47263cd88fa9b345f5043ae9aeed00803 (patch) | |
tree | c18e92c544360d7875409e0a5b9f0c221cfccfe4 /.gdbinit | |
parent | dca347ebe473a36116157d3649bd10b3319794fc (diff) | |
download | mongo-83f666c47263cd88fa9b345f5043ae9aeed00803.tar.gz |
SERVER-28668 Add mongo_printers.py to .gdbinit
Diffstat (limited to '.gdbinit')
-rw-r--r-- | .gdbinit | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,8 +1,11 @@ # Print the full stack trace on python exceptions to aid debugging set python print-stack full -# Load the mongodb pretty printers +# Load the mongodb utilities source buildscripts/gdb/mongo.py +# Load the mongodb pretty printers +source buildscripts/gdb/mongo_printers.py + # Load the mongodb lock analysis source buildscripts/gdb/mongo_lock.py |