Standard Output
Grace Software
JavaLog

$Revision: 1.1 $
$Date: 1999/10/11 00:05:15 $

Logging to System.out and System.err

By default, all events go to a StandardOutHandler named out. This Handler prints all events to the system's standard output. This is as if one typed the following property on the command line:
    $ java -Dlog.handler.out.url=file:- MyClass

Note, the property value file:- tells JavaLog to use the StandardOutHandler and print to the system's standard out. However, the StandardOutHandler can also print to the standard error by the following flag:

    $ java -Dlog.handler.out.stream=err MyClass