Turn off hibernate logging to console
I'm fairly certain that you're seeing those SQL statements because somewhere in your Hibernate config the property "hibernate.show_sql" is set to true. Find that setting and change to false.
Solved this by adding:
<property name="hibernate.show_sql" value="false"/>
in the persistence.xml file, this is if you have one
If you have a persistence.xml file try there. That's where I found it.
Set the below to false in applications.properties file:
spring.jpa.show-sql=false
it will turn off Hibernation messages.