aboutsummaryrefslogtreecommitdiffstats
path: root/lib/logger.js
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2010-06-21 15:41:22 +0200
committerMatěj Cepl <mcepl@redhat.com>2010-06-21 15:41:22 +0200
commit8e63763a77a0dd81791cb2c68fdd905b3e518bba (patch)
tree4b8d41a98f9598f8e2328493b68b36dc959bbeba /lib/logger.js
parenta0756d1dbd9e8bbb37293b8b756f6aee1e205d65 (diff)
downloadbugzilla-triage-8e63763a77a0dd81791cb2c68fdd905b3e518bba.tar.gz
Clean up logging
- remove unnecessary logging messages - instead of dumping whole log store to stderr, give just count of items
Diffstat (limited to 'lib/logger.js')
-rw-r--r--lib/logger.js10
1 files changed, 8 insertions, 2 deletions
diff --git a/lib/logger.js b/lib/logger.js
index 594f5c2..88a3215 100644
--- a/lib/logger.js
+++ b/lib/logger.js
@@ -11,9 +11,7 @@ function Logger(store, abbsMap) {
this.EmptyLogsColor = new Color(0, 255, 0);
this.FullLogsColor = new Color(0, 40, 103);
- console.log("store = " + store.toSource());
this.store = store;
- console.log("abbsMap = " + abbsMap.toSource());
this.abbsMap = abbsMap;
};
@@ -55,6 +53,14 @@ Logger.prototype.addLogRecord = function(that) {
return comment;
};
+Logger.prototype.getLength = function () {
+ var counter = 0;
+ for (var key in this.store) {
+ counter += 1;
+ }
+ return counter;
+}
+
Logger.prototype.getBugzillaAbbr = function(url) {
// for https://bugzilla.redhat.com/show_bug.cgi?id=579123 get RH
// for https://bugzilla.mozilla.org/show_bug.cgi?id=579123 get MoFo