Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

Sign up now!

Resolved System.out.println randomly blocks

Joined
Nov 3, 2013
Messages
609
I've come across an interesting bug, I'm not sure if it's java or the client but every so often System.out will start blocking:
Code:
status = "Mushroom";
System.out.println("test");
status = "Pineapple";
This code will result in the status being set to Mushroom, and the script hanging (the pineapple line is never touched).

Again, I don't know if this a client or a java issue, all I know is that it happens every now and then.

@Cloud, @Arbiter
 
Joined
Nov 3, 2013
Messages
609
Uhm, how can I reproduce this?
I usually get this after printing a massive amount of lines to the console. I think it might just be an issue with Windows 10 though, since I can solve it by resizing the cmd window. On a resize it prints everything that it had buffered.
 
Engineer
Joined
Jul 28, 2013
Messages
2,776
I usually get this after printing a massive amount of lines to the console. I think it might just be an issue with Windows 10 though, since I can solve it by resizing the cmd window. On a resize it prints everything that it had buffered.
Definitely sounds like an OS issue.
 
Top