Skip to content

Instantly share code, notes, and snippets.

@fty4
Created December 7, 2016 10:24
Show Gist options
  • Save fty4/182ed0c284dcaf7f4d4fba15f735f37f to your computer and use it in GitHub Desktop.
Save fty4/182ed0c284dcaf7f4d4fba15f735f37f to your computer and use it in GitHub Desktop.
Logging Console to a File
/*
* Set the standard output stream as on a log file
*/
String pathname = "C:\\Marco\\tmp\\WindowsServiceTut\\log.txt";
FileOutputStream out = new FileOutputStream(new File(pathname), true);
PrintStream printStream = new PrintStream(out);
System.setOut(printStream);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment