I have a team working on an app based on Unity3d and i see them using simple print and debug.log() for tracing the flow, finding an error. I come from a C/Python/PHP end and suggested they use multilevel logging(DEBUG, INFO, WARNING, ERROR, CRITICAL) so that they don’t have too-much or too-little amount of logs at any point of debugging.
They for one can’t really look around for it since they don’t really know what they’re looking for. Can the community help?
Change Debug.Log to Debug.LogError, LogWarning ; if you need more levels I’m sure the community will have suggestions like try/catch, exception handling/custom, etc.