Hide messages in Eclipse Console

I am running a program and I receive a lot of messages in the Eclipse console, is it possible to hide all this messages and just be avaible to see the system.out.print messages.
I am using the hibernate.cfg.xml file to configure Hibernate.
Thank you

Not sure what you mean exactly by “Eclipse Console”, but you can configure the log level in your application to e.g. ERROR which will cause that only errors are printed. This depends on the environment you are running in though. If you are running in a Java EE environment e.g. Wildfly/JBoss EAP, then you will have to configure the log level in the standalone.xml or through the management console.
If you run a Java SE application, it depends on the logging framework that you use.