How do everyone handle their print/assert() when app goes live in the stores?
I just use a flag to check if my app is beta, like this;
local appIsBeta = true;
if appIsBeta == true then
print()
assert()
end
then I just change the flag to false so I don’t have to go through the code and comment/erase every print before submitting.
I read something about print() in an article some time ago that apps could get rejected by Apple if the prints were actually printing to console.
Does anyone have a use a printController class or something similar for easier management of this?
Open for suggestions
@lano78
[import]uid: 13560 topic_id: 20360 reply_id: 320360[/import]

