Albin Jose@suppo.fi to Programmer Humor@lemmy.ml · 2 years agoLet the debugger do its job.suppo.fiimagemessage-square71linkfedilinkarrow-up1403arrow-down145
arrow-up1358arrow-down1imageLet the debugger do its job.suppo.fiAlbin Jose@suppo.fi to Programmer Humor@lemmy.ml · 2 years agomessage-square71linkfedilink
minus-squareMajorHavoc@lemmy.worldlinkfedilinkarrow-up2·2 years 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()
…