I use Eclipse on two different computers. Everything works fine on the one at school but on my laptop the console doesn't show standard errors, instead it just stays blank. For instance, this program purposefully generates an error:
String [] string = new String [3];
string [4] = "foo";
On the school's computer this returns
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 4
I'd like my laptop to do the same but it stays blank: BlankConsole
These are my console preferences: Preferences
Note: I'm using Windows and the school's computer is a Mac.