Fix 24-hour time format for logging

This commit is contained in:
LeeDr 2015-10-27 12:46:04 -05:00 committed by Joe Fleming
parent 34768c83b1
commit 80110414a9

View file

@ -50,7 +50,7 @@ define(function (require) {
log: function log(logString) {
console.log(moment().format('hh:mm:ss.SSS') + ': ' + logString);
console.log(moment().format('HH:mm:ss.SSS') + ': ' + logString);
},