Skip to content

Instantly share code, notes, and snippets.

View VitorDaynno's full-sized avatar
📒
Everyday is a day to a new knowledge

Vítor Daynno VitorDaynno

📒
Everyday is a day to a new knowledge
View GitHub Profile
@VitorDaynno
VitorDaynno / logger.js
Created September 28, 2019 02:32
Winston config
const winston = require('winston')
const { format, createLogger, transports } = winston;
const { printf, combine, colorize, timestamp } = format;
const { Console, File } = transports;
module.exports = () =>{
const myFormat = printf(({ level, message, timestamp }) => {