Should we report bugs in a bug tracking system?

In Favour:

  1. If we already use a bug tracking tool we are used to it. No need to learn something new.

  2. The bug report contains more data inherently (environment, statuses, etc.).

  3. You can attach logs and screenshots.

  4. An important source of information:

    - Data on fixed bugs (important for example if the bug re-occurs and you want to know when it was fixed. Then the developer can find the fix in the source control and save some time).

    - If you find a bug and search for duplicates, you might find that the bug was closed as 'won't fix', so no need to open it and thus save time for the system.

  5. In case some teams are working on the same project. You want them to be aware of bugs that can influence them.

  1. If you need to measure bugs (are there too many re-opens etc.).



Against:

  1. Requires time.

  2. Many bugs you spent time reporting will never be fixed.

  3. A simple note is enough + adding the scenario to the (automated) regressions.

  4. If you are working in Agile mode, and you find a bug in the stage of 'supporting the team', and the bug is closed immediately, it is the same as in a waterfall. When developers find a bug and fix it, they also don't report it.

  5. It encourages verbal communication between teams (see #5 above)

  6. In case of important information, it can be saved on the FAQ page.

  7. Requires a lot of time spent: writing, triages, explanations, reproducing, comments.

To my opinion, bugs in the development mode should be written down simply (not in a tracking system).

In case it is fixed in the same sprint - delete it. In case it is not fixed - properly report it.

Comments