Initialize output stream redirection.
()
| 989 | * Initialize output stream redirection. |
| 990 | */ |
| 991 | protected void initStreams() { |
| 992 | // Replace System.out and System.err with a custom PrintStream |
| 993 | System.setOut(new SystemLogHandler(System.out)); |
| 994 | System.setErr(new SystemLogHandler(System.err)); |
| 995 | } |
| 996 | |
| 997 | |
| 998 | /** |