sabreW4K3@lazysoci.al to Programmer Humor@programming.dev · 4 months agoprint('here1');lazysoci.alimagemessage-square43fedilinkarrow-up11arrow-down10
arrow-up11arrow-down1imageprint('here1');lazysoci.alsabreW4K3@lazysoci.al to Programmer Humor@programming.dev · 4 months agomessage-square43fedilink
minus-squarexmunk@sh.itjust.workslinkfedilinkarrow-up0·4 months agoecho __LINE__ . "Moo\n"; Honestly if you’re not including the LoC in your debug statement I don’t even fucking understand you. But yeah, senior devs know the power of breadcrumb debugging (because most of us were deeply scarred by gdb).
minus-squareCanadaPlus@lemmy.sdf.orglinkfedilinkarrow-up0·4 months agoDid GDB do something bad at some point?
minus-squarepsud@aussie.zonelinkfedilinkarrow-up0·edit-24 months agoDon’t you want it to look a little nicer? echo __LINE__ . “: Moo!”; I mean, presuming cowsay is unavailable
minus-squarequink@lemmy.mllinkfedilinkarrow-up0·4 months agoThat’s console.trace() for all you JS devs out there.
minus-squarealqloe@lemmy.dbzer0.comlinkfedilinkarrow-up0·4 months agoI always combine that with objects with the shorthand notation. So you always know what variable has what value without having to remember in what order you printed the variables. console.trace({i, list});
echo __LINE__ . "Moo\n";
Honestly if you’re not including the LoC in your debug statement I don’t even fucking understand you.
But yeah, senior devs know the power of breadcrumb debugging (because most of us were deeply scarred by
gdb
).dbg!()
for Rust usersDid GDB do something bad at some point?
Yes. It breaks points.
No
Don’t you want it to look a little nicer? echo __LINE__ . “: Moo!”;
I mean, presuming cowsay is unavailable
That’s
console.trace()
for all you JS devs out there.I always combine that with objects with the shorthand notation. So you always know what variable has what value without having to remember in what order you printed the variables.