Revert "Tweak log formating to append colon and space to stdout type."

This reverts commit 246fdaece6.
This commit is contained in:
Dan Rowe 2012-10-21 23:15:52 -04:00
Родитель ecdc1cdb87
Коммит 14a83e12a4
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -18,9 +18,9 @@ Logger.prototype = {
log: function (msg, type) {
if (this.backend == 'stdout') {
if (!type) {
type = 'DEBUG';
type = 'DEBUG: ';
}
this.util.log(type + ": " + msg);
this.util.log(type + msg);
} else {
if (!type) {
type = this.level