The following is my application.properties
:
spring.jpa.show-sql=true
spring.jpa.hibernate.ddl-auto=update
logging.level.org.hibernate.SQL=debug
logging.level.org.hibernate.type=trace
logging.level.org.springframework.web=debug
logging.level.org.hibernate.transaction=trace
server.port=8443
server.ssl.enabled=false
but I still get this in the console:
Hibernate: insert into group_user (`member_groups_id`, member_id) values (?, ?)
Why do I still get question mark in the log ?