Re: Capturing System.out on a Mac

2012-04-27 Thread Henrique Ordine
Aren't the log files in your tomcat_home/logs directory enough? Op 27 april 2012 18:19 schreef Dola Woolfe dolac...@yahoo.com het volgende: Hi, We just switched from Windows to Mac. On Windows, when we started tomcat in the command window, a new window would pop up that contains all the

Re: Capturing System.out on a Mac

2012-04-27 Thread Dola Woolfe
They don't contain the output of System.out? Are you expecting them to?

Re: Capturing System.out on a Mac

2012-04-27 Thread Derek Beauregard
Catalina.out should have anything written to stdout/stderr. Be careful as this file is not rotated and will grow for ever. Any web apps should be using logging and not System.out. Also you could start tomcat with the 'run' command rather than the 'start' command to run it in the foreground of

Re: Capturing System.out on a Mac

2012-04-27 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Dola, On 4/27/12 12:19 PM, Dola Woolfe wrote: We just switched from Windows to Mac. On Windows, when we started tomcat in the command window, a new window would pop up that contains all the output of System.out. But on a Mac, no new window

Re: Capturing System.out on a Mac

2012-04-27 Thread Dola Woolfe
, 2012 1:31 PM Subject: Re: Capturing System.out on a Mac Catalina.out should have anything written to stdout/stderr.  Be careful as this file is not rotated and will grow for ever.  Any web apps should be using logging and not System.out. Also you could start tomcat with the 'run' command rather

RE: Capturing System.out on a Mac

2012-04-27 Thread Caldarale, Charles R
From: Dola Woolfe [mailto:dolac...@yahoo.com] Subject: Re: Capturing System.out on a Mac I appreciate the point about logging, but what if I am using a library that utilizes System.out? Then you really, really need to file a bug report with the maintainers of the library for writing anti