this post was submitted on 01 Feb 2026
153 points (90.5% liked)
Programmer Humor
29166 readers
716 users here now
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Rules
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Printing to console is often only used for toy code anyway.
Wait, how do you debug your code?
A logger? Console prints are shitty in general but especially when you have an actual logger already
You know what println never did? Run arbitrary code on my toaster.
Neither did Log4j in basically all cases, some maniac just put arbitrary code callbacks into their logger, undocumented and enabled by default. The insane part isn't the feature itself it's the fact it's enabled by default in a logger of all things.
Oh man, I thought that was one of the classic jokes :'( I am out of touch
People in my experience are actually very serious about the standard out to debug log which is... baffling. Same people generally outright refuse to learn how to use a debugger in languages where those are pleasant
Oh I'm completely serious. The joke is that everyone does it but everyone knows not to do it. I started doing it when I first ran into problems debugging actor contexts, and never stopped.
The good printlns become logs, obviously