How to close log by simple way?

how to close log by simple way?
too much log info like:
24, 2020 8:34:56 下午 com.jme3.animation.SkeletonControl controlRender
info: Hardware skinning engaged for


It’s java.util.logging. You can configure it with a logging.properties file.

1 Like

I usually invoke

Logger.getLogger("").setLevel(Level.WARNING);

in the main() method of my application.

1 Like