Skip to content

Instantly share code, notes, and snippets.

@EZaykov
Last active January 16, 2019 09:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save EZaykov/3f5161f93591cec5580646044db055a1 to your computer and use it in GitHub Desktop.
Save EZaykov/3f5161f93591cec5580646044db055a1 to your computer and use it in GitHub Desktop.
const fs = require('fs');
const moment = require('moment');
require('moment-timezone');
function log(msg){
const date = `[${moment().tz('Asia/Krasnoyarsk').format('DD.MM.YY HH:mm:ss')}] `;
let line = date + msg;
console.log(line);
line += '\n';
fs.appendFileSync('node.log', line);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment