wajic icon indicating copy to clipboard operation
wajic copied to clipboard

Feature request, print messages with colors

Open staviq opened this issue 3 years ago • 0 comments

This a very simple modification, for starters, warnings in yellow:

var WARN = function(msg)
{
//console.warn('[WARNING] ' + msg);
console.log('\x1b[1m\x1b[33m%s\x1b[0m', '[WARNING] ' + msg);  //yellow
};

There is a nice and handy reference for console colors: https://stackoverflow.com/a/41407246

staviq avatar Jan 11 '22 00:01 staviq