Debugging in python is already so easy with `print(f"{myvar=}")` and `breakpoint()`...
>Do you ever use print() or log() to debug your code?
I haven't written my own code in months at this point...kind of depressing to think about
I haven’t used print for debugging for ages. Now it’s all trace on azure and hope your bug ends up in the sampled data in whatever that stupid thing is called. App insights or some rubbish. Apparently a good old log file just isn’t good enough it has to be larded up with a query language. Grep was fine guys.
Remember COBOL's EXHIBIT?
...use slightly fancier print() instead!
why another tool for that ? think standard with other team/company and use the same integrated ones.
[dead]
Or use tests and/or a debugger. Which gives you all the listed benefits w/o an additional dependency.