All Questions
2 questions
1
vote
3
answers
152
views
Multiple error debugging
Sometimes I ran into errors which are really hard to debug. So my meta question is the following:
You have multiple chunks of code, let's say A -> B -> C -> D
Your code don't crash but the ...
1
vote
3
answers
199
views
Are debug-build-only UI controls a bad practice?
Often, to simplify testing, I add UI controls that are only visible and enabled in debug build only. Or prepopulate mandatory input fields in debug build. Is this a bad practice? Assuming the release ...