Skip to content

A set of gdb pretty printers for objects in the MongoDB source code.

Notifications You must be signed in to change notification settings

RedBeard0531/mongo_gdb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

A set of gdb pretty printers for objects in the MongoDB source code.

If you find the need to bypass the printers and look at the raw fields, use
the /r flag to print.

To use add the following lines to your .gdbinit, adjusting the path as needed:

python
import sys
import os
try:
    sys.path.insert(0, os.path.expanduser('~/10gen/mongo_gdb/'))
    import mongo_printer
    mongo_printer.register_mongo_printers()
except Exception:
    print "Error loading mongo_printer"
    pass
end

About

A set of gdb pretty printers for objects in the MongoDB source code.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages