Display LOG limited to 49 lines ?

I notice when I try to print more than 49 lines, the Log stop showing Print(). Here is a simple loop to print 100 lines in the LOG:

for(line := 1..100):
   Print("line: {line}")

Repetitively printing messages with no cooldown will cause the log to stop printing replicated messages and you will get this warning in the upper left of your game screen or in the unreal editor output log tab (But not the log tab in your picture). To fix this you might want to add Sleep(0.0) at the end so it keeps printing until the loop ends
image

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.