Print ("") causing problems in TestFlightApp - must comment out to run properly

So I switched to a newer build a few days ago, 1068 to be exact, well now apps that were working fine stopped working on devices, while they worked fine in the simulator still. I finally decided to comment out all my ‘print()’ statements, and suddenly everything works fine 100%…what gives?

–solved the mystery, see final post.

You need to tell us what kind of problems you’re seeing with the print statement. Nobody else is reporting the problem.

Is it possible that you’ve accidentally redefined the print function somewhere in your code?

I figured out the bug. It’s not with Corona - it’s with TestFlightApp. The apps will not run correctly with Print statements in them after uploading to test flight. If you comment out the code and recompile and reupload - all is well.

As an example, 

function test()

  x=x+1

   print (x)

  y=y+1

end

in this function call, the y=y+1 will not be executed…so it’s almost as if anything after the print statement gets ignored.

Not coronas problem…

You need to tell us what kind of problems you’re seeing with the print statement. Nobody else is reporting the problem.

Is it possible that you’ve accidentally redefined the print function somewhere in your code?

I figured out the bug. It’s not with Corona - it’s with TestFlightApp. The apps will not run correctly with Print statements in them after uploading to test flight. If you comment out the code and recompile and reupload - all is well.

As an example, 

function test()

  x=x+1

   print (x)

  y=y+1

end

in this function call, the y=y+1 will not be executed…so it’s almost as if anything after the print statement gets ignored.

Not coronas problem…