Are there any systems for logging or keeping track of which type of bugs you encounter as you develop? [closed]

StackOverflow https://stackoverflow.com/questions/291111

  •  08-07-2019
  •  | 
  •  

Question

I'm not looking for bug tracking, per se. But more like a build tool: as a developer, it would be awesome if every time I compiled or tried to run code, I could redirect debugging output and record the bugs I most commonly introduce, how long they take to resolve, etc.

Is there anything like this out there?

Was it helpful?

Solution

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

We use them for our bug tracking and its an awesome site

OTHER TIPS

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

Mistakes in coding are not "Bugs" until they get checked into the master sources. If you find and fix them as part of your "investigation" on how to fix the particular problem assigned to you, that's just called ... "being a programmer".

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top