Reputation: 298
when you start debugging, how do you organize your work? are there any regular actions you take before/while debugging?
in other words what's the best strategy you follow?
thank you
Upvotes: 1
Views: 242
Reputation: 37378
My debugging strategy is to write tests so I don't need to use a debugger.
Upvotes: 3
Reputation: 10830
This basically depends on what your aim is by debugging. Are you fixing some issues check data etc.
But basic thing is to setup a debugger like Visual studio or something which will make your life simpler.
Upvotes: 0