Albin Jose@suppo.fi to Programmer Humor@lemmy.ml · 1 year agoLet the debugger do its job.suppo.fiimagemessage-square74fedilinkarrow-up1429arrow-down148
arrow-up1381arrow-down1imageLet the debugger do its job.suppo.fiAlbin Jose@suppo.fi to Programmer Humor@lemmy.ml · 1 year agomessage-square74fedilink
minus-squareMajorHavoc@lemmy.worldlinkfedilinkarrow-up2·1 year ago Coming off as a noob here, but how do you actually utilize the debugger. Ostensibly I debug Python in VSCode by installing the correct plugins and adding appropriate run configs to the debugger launch configuration. But honestly I debug most of it with import pdb; pdb.set_trace()…
Ostensibly I debug Python in VSCode by installing the correct plugins and adding appropriate run configs to the debugger launch configuration.
But honestly I debug most of it with
import pdb; pdb.set_trace()
…