small fix for better pipelog support

This commit is contained in:
Philipp Kunz 2015-12-02 16:23:39 +01:00
parent 0aafb76046
commit 4f0185a1aa
4 changed files with 7 additions and 2 deletions

1
.bithoundrc Normal file
View File

@ -0,0 +1 @@
{}

View File

@ -81,9 +81,11 @@ var BeautylogOS;
case 'warn':
logText = localBl.warnPrefix + logText.bold;
break;
case 'log':
default:
logText.blue.bold;
console.log(('unknown logType for "' + logText + '"').red.bold);
break;
}
console.log(logText);
return true;
@ -201,7 +203,7 @@ var beautylog = function (logPlatform) {
return beautylogBrowser;
break;
default:
console.log("something is strage about the way you required beautylog");
console.log("something is strange about the way you required beautylog");
break;
}
};

View File

@ -46,9 +46,11 @@ module BeautylogOS {
case 'warn':
logText = localBl.warnPrefix + logText.bold;
break;
case 'log':
default:
logText.blue.bold;
console.log(('unknown logType for "' + logText + '"').red.bold);
break;
}
console.log(logText);
return true;

View File

@ -15,7 +15,7 @@ var beautylog = function(logPlatform:string = "os") {
return beautylogBrowser;
break;
default:
console.log("something is strage about the way you required beautylog");
console.log("something is strange about the way you required beautylog");
break;
}
};