Messages for console

Hello, few days ago I did the (.exe)  for my application using jsmoth, and it works very well.

But it shows a lot of messages for console.

how  can I avoid it?, in the jme or in net beans

Turn off all Logger ouput,

by simple putting:


Logger.getLogger("") // root logger
.setLevel(Level.OFF); // Turn out root logger's ouput (causes all other logger's output to stop, too)



Make sure you import the right classes, though :D
but since you're using netbeans, i guess no problem for you :D

it works :slight_smile: thx a lot :slight_smile: