First, prints in your apk are useful. You can plugin your device into your USB port and use “adb logcat”, “monitor”, or Android Studio and view the messages on the device. Some things can only be tested on a device and this is a good way to debug your code.
Next, depending on the version of Corona SDK you’re running, you can re-assign the print statement to do something differently. We had some daily builds that blocked this feature but we’ve backed it out for now until we can figure out how to support it better. But for now you can do:
local debugMode = true local originalPrint = print print = function( ... ) if debugMode then originalPrint( unpack( arg ) ) end end
Please do not use the variable “debug”, it’s an important global variable.
It’s better to make the new print function local took but then you have to define it in all modules.
Rob
Then before you deploy a production build you can set your value of debugMode to false and it will stop your prints from showing in the console log.