Hi,
This is a question about running on an android device.
Is there a way in which I can turn off the logging of error messages in specific parts of the code.
In Perl you can turn off warnings in portion of the code like this: $^W=0; crazywarnings(); $^W=1
Is there something like this in Lua/Corona? It just creates so much noise.
I am using some 3rd party libraries and the entire console for about 100k lines is;
WARNING: Asset file “image/turd@2x.png” does not exist
Which is true enough, but in this particular instance I don’t care.
