Maybe I have a sample class:
public interface ManagerRepository extends EmployeeRepository {
public List<Manager> findManagerByName(String name);
}```
Or any number of sample queries in this class.
How can I tell for which entries a derived query is being generated?
ChatGPT is telling me to use a `QueryListener`, but I am unable to import `org.springframework.data.repository.core.support.QueryCreationListener`. (from here https://docs.spring.io/spring-data/commons/docs/current/api/org/springframework/data/repository/core/support/QueryCreationListener.html)
The alternative is to use sql logs, but that induces so much spam that I cant see anything being generated.
What to do?