Reputation: 778
In my java code, I have System.out.println(...) statement which is invoked by jsp. But I don't see anything being written to tomcat console. I've googled around and seems no clear answer on it.
I'm using tomcat 6.0.
Thanks
Upvotes: 4
Views: 18164
Reputation: 3777
Usually (on default setup) the messages of the System.out.println(...)
statement can be found in your ./apache-tomcat6.0/logs/catalina.out
logfile.
Upvotes: 3