fixed log error
This commit is contained in:
parent
7bd8d450ae
commit
346c8e0784
@ -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")
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user