The log files and locations are entirely configurable in the server.xml/web.xml files, but the default install will have the System.out going to catalina.out in the /logs directory.
you can get a realtime display by doing
tail -f catalina.out
this will provide live viewing of the logs as they are appended to the file, and you can hit Ctrl-C to exit the view.
Hope that helps.