Java Slick2D cmd output

32 views Asked by At

Is there any way to disable automatic Slick2D info output to CMD window showing line INFO:Use Java PNG Loader = true every time it is used?

Besides being pretty annoying it also breaks my formatted CMD output design!

1

There are 1 answers

1
qraqatit On BEST ANSWER

Just add this to your code of the class that is using Slick2D:

static {
    org.newdawn.slick.util.Log.setVerbose(false);
}