node-ipc/entities/LogColors.js

16 lines
282 B
JavaScript
Raw Normal View History

2016-01-11 15:59:40 +11:00
'use strict';
class LogColors{
constructor(){
this.good='green';
this.notice='yellow';
this.warn='red';
this.error='redBG';
this.debug='magenta';
this.variable='cyan';
this.data='blue';
}
}
module.exports=LogColors;