'Java Slick2D cmd output

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!



Solution 1:[1]

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

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

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 qraqatit