Switching off logger in jme3

I want to switch the logger off in jme3, ideally for just when my code is adding geometry to the rootNode (sometimes hundreds of objects). I’ve seen code around which I think is jme2 only, but I can’t get it to work.

http://hub.jmonkeyengine.org/groups/general-2/forum/topic/getting-rid-of-the-console-info/#post-108404

thanks, had been using that code, but not working - i’ve figured out why though,



i had

import java.util.logging.Logger;

instead of

import java.util.logging.*;



which is why it wasnt running…

cheers.