Skip to content

Instantly share code, notes, and snippets.

@JBreit
Created May 26, 2017 05:45
Show Gist options
  • Save JBreit/5abf5aec71b8cbab83b044cd37670166 to your computer and use it in GitHub Desktop.
Save JBreit/5abf5aec71b8cbab83b044cd37670166 to your computer and use it in GitHub Desktop.
const { Console } = require('console');
const { createWriteStream } = require('fs');
const output = createWriteStream('./stdout.log');
const errorOutput = createWriteStream('./stderr.log');
const logger = new Console(output, errorOutput);
module.exports = logger;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment