diff options
Diffstat (limited to 'lib/logger.js')
-rw-r--r-- | lib/logger.js | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/logger.js b/lib/logger.js index 702465a..cc3f213 100644 --- a/lib/logger.js +++ b/lib/logger.js @@ -3,11 +3,8 @@ "use strict"; var urlMod = require("url"); var urilMod = require("util"); -var Color = require("color").Color; var Logger = exports.Logger = function Logger(store, abbsMap) { - this.EmptyLogsColor = new Color(0, 255, 0); - this.FullLogsColor = new Color(0, 40, 103); this.store = store; this.abbsMap = abbsMap; @@ -27,7 +24,6 @@ Logger.prototype.addLogRecord = function(that) { + urlMod.parse(rec.url).host + "+" + that.bugNo; let clearLogAElem = that.doc.getElementById("clearLogs"); - clearLogAElem.style.color = this.FullLogsColor; clearLogAElem.style.fontWeight = "bolder"; if (this.store[recKey]) { this.store[recKey].comment += "<br/>\n" + comment; |