Skip to content

Commit

Permalink
🐴 default date formatter printed month instead of minutes. am idiot
Browse files Browse the repository at this point in the history
  • Loading branch information
Juravenator committed Dec 15, 2016
1 parent c98c2d0 commit 8daa1fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ module.exports.options = {
},
// a function that takes a date and returns a string
// used to print the date in the prefix
dateFormatter: date => moment(date).format("D/M/YY HH:MM:ss.SSS")
dateFormatter: date => moment(date).format("D/M/YY HH:mm:ss.SSS")
}

var getLogTypePrefix = type => ` [${type}] ${module.exports.options.typePadding.substring(stringz.length(type) + 4)}`;
Expand Down

0 comments on commit 8daa1fe

Please sign in to comment.