android - Logging strategy -
i'm finish android application. in end have found i've been using bunch of logging statements, like:
log.d(tag, "blah-blah");
the question is: production release should them?
- just comment/stripe log statements
- do else more sophisticated? used log4j properties or so
please share experience.
i this, making compiler remove logging if debug false:
if (constant.debug) log.d(tag, "mein gott, state roflcopter");
Comments
Post a Comment