| Author | DaveJarvis <email> |
|---|---|
| Date | 2020-06-24 21:18:30 GMT-0700 |
| Commit | 36158f503686c4f60c0eeefcb3dfcc9f47d190ad |
| Parent | 1118493 |
| */ | ||
| public static void main( final String[] args ) throws IOException { | ||
| - // Shhh. | ||
| - System.err.close(); | ||
| - | ||
| showAppInfo(); | ||
| Main.main( args ); |
| public final class Main extends Application { | ||
| - // Suppress standard output logging; the Launcher suppresses stderr output. | ||
| static { | ||
| + // Suppress logging to standard output. | ||
| LogManager.getLogManager().reset(); | ||
| + | ||
| + // Suppress logging to standard error. | ||
| + System.err.close(); | ||
| } | ||
| Delta | 4 lines added, 4 lines removed |
|---|