Merge pull request #179 from cubedro/develop

fixed log error
This commit is contained in:
Marian OANCΞA 2015-06-03 05:23:07 +03:00
commit adce71229a
1 changed files with 7 additions and 4 deletions

View File

@ -12,7 +12,7 @@ var sections = [
var types = [
'CON',
'CHR',
'UDP',
'UPD',
'BLK',
'TXS',
'STA',
@ -23,7 +23,7 @@ var types = [
var typeColors = {
'CON': chalk.reset.bold.yellow,
'CHR': chalk.reset.bold.red,
'UDP': chalk.reset.bold.green,
'UPD': chalk.reset.bold.green,
'BLK': chalk.reset.bold.blue,
'TXS': chalk.reset.bold.cyan,
'STA': chalk.reset.bold.red,
@ -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")
{