I just jumped from v2850 to v2873 to check what is ‘safe’ to build with before a major release of our software.
Apart from various other problems I’m having with Corona suddenly implementing app breaking changes in the name of ‘good practice’, I’m getting a new message in my console that says:
repeats 2 times
or whatever.
Except the only thing it seems to care about is that the previous line printed to the console was the same result.
The trouble is, that it appears to be suppressing things it deems to be repeated.
e.g., I am printing a ‘map’ of the binary values of a table representing a grid. Now it doesn’t bother to show me lines in that grid where the result is the same as the previous line. Really useful… now I can’t debug my grid.
Also, if two entirely seperate functions output the same line, it deems that a repeat, too. Really useful… now I can’t debug my program flow.
I can’t find any documentation anywhere on what this is or why its happening, but I’m imagining it’s supposed to be a ‘helpful’ message pre-warning you of stuff that could lead to stack overflows or something. As it is, it’s just plain wrong and it’s breaking my console output, which also happens to be my in-app debugging.
For example, the output of the following ‘app’:
for i = 1, 10 do print ("THIS SUCKS") end
is:
May 03 03:20:54.285 THIS SUCKS May 03 03:20:54.285 ### repeats 5 times ### May 03 03:20:54.294 THIS SUCKS May 03 03:20:54.294 ### repeats 3 times ###
Which is absolutely no use whatsoever. Nor does it even make any sense.
So… what is this, and how do I turn it off???