|
|
|
|
|
by bakatubas
1880 days ago
|
|
All the more reason for folks to spend more time using the debugger; for instance, break points are only one feature. Setting up remote debugging I’ll agree is more difficult than a local application, but each remote machine can automatically run startup commands and not require user input; commands can be run at particular places too (to print output etc) with conditional trace points, all while not impacting the code itself. Main point is that folks don’t spend enough time learning the debugger, as print statements are easier. But using the debugger is a better practice in my opinion in the case where print statements are added just for a quick test, then removed. |
|