Tag Archives: Bugs

Should you log every bug?

Are all bugs serious enough to log?

I found one during testing today that raised the question of the costs of raising, triaging, fixing and retesting a bug compared with the costs of just leaving it in the system.

It set off some interesting discussions on Twitter on the subject.

The bug in question was a drop-down list for an optional value in a create dialog in a relatively little-used part of the system. One of the values in the dropdown was not valid, and quite obviously not so, at least with the data in the test system. If you selected that bogus value and saved the record, the server-side code didn’t throw an error, but inserted null into the column.

Since neither the field nore the underlying column were mandatory, the bug didn’t result in any data corruption, and it did save the correct value to the database if you selected one of the legitimate, valid values.

From a user perspective, it’s more of an irritation than a major issue; it certainly doesn’t prevent you from using the feature in its intended way.

In the end I discussed it with the business analyst, and we agreed to log it in the bug tracking system, but assign a low severity.

Posted in Testing & Software | Tagged , | 2 Comments

Bug Fixed

I’ve now fixed the bug on the Author page of this blog (Did any of you notice?), so it’s no longer giving a 404 error. It turned out that author names containing spaces didn’t work when the site was configured to use custom permalinks. After a bit of Googling, it turn out the fix is to update the table wp_users, changing the field user_nicename to get rid of the spaces (So it’s “Tim-Hall”, not “Tim Hall”).

For reasons best known to WordPress themselves, the user’s nicename isn’t editable though the WordPress control panel, so you have to update the database directly. I did it using phpMyAdmin which is available on my host.

Posted in Testing & Software | Tagged , | Comments Off