I'm using Java with Spring Boot in IntelliJ Community edition.
I usually use console.log() in the front-end to debug my code and see the value of a variable.
Here in the back-end I try to do the same using System.out.println
.
For example
System.out.println("page is" + query.page());
return dslContext.select(...
I'm looking at the IntelliJ terminal but not getting anything back there.