Buscar
Social
Ofertas laborales ES

Foro sobre Java SE > Desactivar los mensajes de Hibernate que sale en la consola

Buenas tardes totales.
Necesito de su apoyo. quiero saber como desactivar los mensajes que salen en la consola Cuando inserto un registro siempre me sale :
jun 15, 2014 4:33:58 PM org.hibernate.annotations.common.reflection.java.JavaReflectionManager <clinit>
INFO: HCANN000001: Hibernate Commons Annotations {4.0.4.Final}
jun 15, 2014 4:33:58 PM org.hibernate.Version logVersion
INFO: HHH000412: Hibernate Core {4.3.5.Final}
jun 15, 2014 4:33:58 PM org.hibernate.cfg.Environment <clinit>
INFO: HHH000206: hibernate.properties not found
jun 15, 2014 4:33:58 PM org.hibernate.cfg.Environment buildBytecodeProvider
INFO: HHH000021: Bytecode provider name : javassist
jun 15, 2014 4:33:58 PM org.hibernate.cfg.Configuration configure
INFO: HHH000043: Configuring from resource: hibernate.cfg.xml
...., etc

Agradecería de su apoyo.
Gracias

junio 15, 2014 | Registered Commenterfjmendozaperu

Aquí tienes varias posibles soluciones.

http://stackoverflow.com/questions/311408/turning-off-hibernate-logging-console-output

junio 16, 2014 | Registered Commenterchoces

Importar librerias:
java.util.logging.Level;
java.util.logging.Logger;

Al principio de la aplicacion, en el public static void main, colocar este codigo:
Logger.getLogger("org.hibernate").setLevel(Level.OFF);

Gracias choces.
Para mas info, clic.

febrero 2, 2015 | Unregistered Commenteruser

Para ser mas conservador, en vez de Level.OFF, puedes elegir Level.SEVERE

febrero 2, 2015 | Unregistered Commenteruser