fixed log error

This commit is contained in:
cubedro 2015-06-03 05:19:00 +03:00
parent 7bd8d450ae
commit 346c8e0784

View File

@ -103,7 +103,7 @@ var typeColors = {
console[item.name] = function () console[item.name] = function ()
{ {
var args = Array.prototype.slice.call(arguments); var args = Array.prototype.slice.call(arguments);
var type, var type = null,
sign, sign,
time; time;
var section = 'API'; var section = 'API';
@ -124,7 +124,10 @@ var typeColors = {
type = args.splice(0, 1); type = args.splice(0, 1);
} }
sign = item.signColor.bold( '[' ) + chalk.reset.bold.white( section ) + item.signColor.bold( ']' ) + " " + item.signColor.bold( '[' ) + typeColors[type](type) + item.signColor.bold( ']' ); sign = item.signColor.bold( '[' ) + chalk.reset.bold.white( section ) + item.signColor.bold( ']' );
if(type !== null)
sign = + " " + item.signColor.bold( '[' ) + typeColors[type](type) + item.signColor.bold( ']' );
if(item.name !== "time" && item.name !== "timeEnd") if(item.name !== "time" && item.name !== "timeEnd")
{ {