diff options
author | Matěj Cepl <mcepl@redhat.com> | 2010-06-09 21:53:42 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2010-06-09 21:53:42 +0200 |
commit | 9b41b8867d5eb3f78b6260e8ee719c81579102c9 (patch) | |
tree | f3b2ee664b4de1c563e5a03f1becc748bbad12a0 /lib/logger.js | |
parent | e6c92c1ff7c2b465afd6076beabb692d9c3e4825 (diff) | |
download | bugzilla-triage-9b41b8867d5eb3f78b6260e8ee719c81579102c9.tar.gz |
* clean up to make jslint happy (abandoned let and replaced with var)
* cleaned up couple of crashes and missing stuff
Diffstat (limited to 'lib/logger.js')
-rw-r--r-- | lib/logger.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/logger.js b/lib/logger.js index 6bd8142..702465a 100644 --- a/lib/logger.js +++ b/lib/logger.js @@ -3,6 +3,7 @@ "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); |