I know that log4j by default outputs to stderror.
I have been capturing the out put of my application with the following command:
application_to_run 2> log ; cat log | grep FATAL
Is there a way to capture the output without the auxiliary file?
|
If you want both
If you want both
The first sends all output destined for file handle 2 ( |
|||||||||
|
|
If you are asking how to redirect stderr to stdout so you can use it in a pipe, there are two ways I know of:
|
|||
|
catis unnecessary:app 2> log; grep FATAL log– Dennis Williamson Jun 12 '10 at 13:26