This is a professional debug techique, what are you talking about? But I rather use ‘Hii’ with various (but not ascending) amounts of i’s.
Hello from the other side
Submitted 1 year ago by alphacyberranger@lemmy.world to programmer_humor@programming.dev
https://lemmy.world/pictrs/image/3a28c31d-afee-43e9-a261-bb73c257daa0.webp
Comments
sebi@lemmy.world 1 year ago
andrew@lemmy.stuart.fun 1 year ago
Sometimes I use various swears. Depends on how long I’ve had to debug. Also depends on whose work I’m debugging and whether they’re in earshot.
alphacyberranger@lemmy.world 1 year ago
Been there, done that
dbilitated@aussie.zone 1 year ago
I’ve used a regex to add a console log to the top of every method with the method name before.
the things you do when you’re desperate.
elxeno@lemm.ee 1 year ago
var num =0 ... console.log("Here " + num++) ... console.log("Here " + num++)
pastelmind@programming.dev 1 year ago
console.count()
Haus@kbin.social 1 year ago
Bad variable names and then awful "temporary" log lines... I feel attacked. ;)
Button777777@lemmy.world 1 year ago
It blows my mind how often i see people using temp logs for debugging.
deegeese@sopuli.xyz 1 year ago
When the issue is only seen after hours of runtime, logging is more practical.