Fix bug: use type to construct log string

This commit is contained in:
till 2012-07-20 16:10:31 +02:00
Родитель 0638da7c49
Коммит dee8857822
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -20,7 +20,7 @@ Logger.prototype = {
if (!type) {
type = 'DEBUG: ';
}
this.util.log(DEBUG + msg);
this.util.log(type + msg);
} else {
if (!type) {
type = this.level