[GIS] How to setup a debugger for QGIS Plugin development

developmentpluginspython-2.7qgisqgis-plugins

As the title of the question implies, I wish to know how to set up a QGIS Python Plugin Debugger so that I can develop plugins more efficiently.

Any information regarding this would be much appreciated as I am fairly new to QGIS Python Plugin Development.

Best Answer

Plugins are written in Python, so use a Python debugger as pdb present in the standard distribution

enter image description here

and look Python module of the week: pdb – Interactive Debugger, Debugging in Python or the multiple tutorials on the Web.

Or choose another one of those presented in Python Debugging Tools

Related Question