Redirects all output sent to System.out and System.err to ImageJ's log console using the default prefixes.
(boolean redirect)
| 30 | * using the default prefixes. |
| 31 | */ |
| 32 | public static void redirectSystem(boolean redirect) { |
| 33 | if (redirect) |
| 34 | redirectSystem(); |
| 35 | else |
| 36 | revertSystem(); |
| 37 | } |
| 38 | |
| 39 | /** |
| 40 | * Redirects all output sent to <code>System.out</code> and <code>System.err</code> to ImageJ's log console |
no test coverage detected