Hi, so this isn't anything major, and it's more for server-side aesthetics and ease of viewing live console output from various plugins (particularly during the debug phase).
Does anyone know a way - in Windows - (so ANSI escape codes won't work) to change the colour of the outputted System.out.println() ?
I'm hacking it a little at the moment using the System.err.println() to print console output as red for certain print statements. 🙉🙈🙊
But ideally I would like to use something syntactically like;
I do notice that when the server starts up there is yellow text from the server ... (also looks like an err print with the time)
So clearly the console supports colour.
I've Google'd for this in the past, but never found an answer...
I even thought I could extend the PrintStream class and override the println ... but nope doesn't really help unless I find a solution and want to make it cleaner.
https://docs.oracle.com/javase…java/lang/System.html#out
Any ideas guys?