Are there any systems for logging or tracking the types of bugs that you encounter in development?

I am not looking for bug tracking by itself. But more like a build tool: as a developer, it would be great if every time I compiled or tried to run the code, I could redirect the debug output and log the errors I most often imagine, how long it takes to resolve, etc. .d.

Is there anything like this?

+1


source to share


2 answers


I know FogBugz has something that you can hit the webservice with their specific information to log the bug. You might be able to add some code to use this service for debugging only.



We use them for bug tracking and great site

+2


source


I think part of the problem here is that the "mistakes" or "mistakes" you make while developing are somehow "abnormal". They are not. They are part of the "problem-to-problem investigation". :-)

Coding errors are not "errors" until they have been verified in the main sources. If you find and fix them as part of your "investigation" of how to fix a specific problem assigned to you, it's simply called ... "being a programmer."



Building and testing your "personal" copy of the code before testing it is how you avoid introducing "bugs" into the project. :-)

0


source







All Articles