How to see System.out.pringln when running the webapps on the client side?

Hello all,

I have a webapp application in which some code has a: System.out.println.

While the application runs on the browser - I cam see some comment I wrote on the console (this really facilitates me in terms of knowing what's going on...I do debugging as well, don't worry :-))

Now... I'm installing the application on the client side and wonder....how can I see the comments I wrote for the console? Is there anyway to see the comment on the 'localhost'?

thanks for any pointers!

[521 byte] By [xianwinwina] at [2007-11-27 6:05:15]
# 1
No. The System.out.println (or whatever logging statement you have) is happening on the server.So you would need access to the server to see the logging statements.
evnafetsa at 2007-7-12 16:50:55 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
Ok, so assuming I'm on the server how do I see that? Thanks evnafets
xianwinwina at 2007-7-12 16:50:55 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 3
Well they will be showing up in the console, and probably being logged to file. Check the [TOMCAT]/logs directory. Maybe called stdout.log?
evnafetsa at 2007-7-12 16:50:55 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 4
If you've administratior access, then you can also check the logs in the administration console. By default it's on port :4848.
BalusCa at 2007-7-12 16:50:55 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...