fixed log error

This commit is contained in:
cubedro 2015-06-03 05:19:00 +03:00
parent 7bd8d450ae
commit 346c8e0784
1 changed files with 5 additions and 2 deletions

View File

@ -103,7 +103,7 @@ var typeColors = {
console[item.name] = function ()
{
var args = Array.prototype.slice.call(arguments);
var type,
var type = null,
sign,
time;
var section = 'API';
@ -124,7 +124,10 @@ var typeColors = {
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")
{