Can you turn of the err.print output that the simpleapp produces?

Hi.

Im trying to debug my project. And it doesnt help me that theres over 100k lines printed out by the SimpleApplication.

I dont need to know:

2011-jun-26 15:36:41 com.jme3.scene.plugins.ogre.MaterialLoader readPassStatement
VARNING: Unsupported pass directive: emissive
2011-jun-26 15:36:41 com.jme3.scene.plugins.ogre.MaterialLoader readTextureUnitStatement
VARNING: Unsupported texture_unit directive: colour_op
2011-jun-26 15:36:41 com.jme3.scene.Node attachChild
INFO: Child (Road_2Road-geom-1) attached to this node (Road_2Road-ogremesh)


If I wanted I would print it myself.
So how do I remove those extra prints that jme do for me?

Hi @Addez,



simply change the root log level:



[java]Logger.getLogger("").setLevel(Level.SEVERE);[/java]



Regards

Moe