|
|
|
|
|
by rTX5CMRXIfFG
1482 days ago
|
|
I know for a fact that print() is faster than breakpoints because debuggers take so much longer to pause and capture the heap and the stack at the breakpoints, whereas printing (or even logging) is just another line of code to run without interruption. Also, sequential console logs are much easier to comprehend than breakpoints when you’re debugging concurrent events. |
|