Kodi Community Forum
How do you do debugging in kodi? - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32)
+--- Forum: Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=26)
+--- Thread: How do you do debugging in kodi? (/showthread.php?tid=324014)



How do you do debugging in kodi? - Lasar3 - 2017-11-14

I am a newbie in kodi addon coding.

Wanting to find the values of variables.

How do you do this in kodi?


RE: How do you do debugging in kodi? - ronie - 2017-11-15

i use the simple approach, add some xbmc.log(variable) statements to the code and observe the kodi Debug Log


RE: How do you do debugging in kodi? - Roman_V_M - 2017-11-15

I've made this remote interface for Python's built-in PDB debugger with Kodi in mind, although a general-purpose package also exists.