From 0ed8ce5cc5100648224ffa8dd00b4391af9b8c52 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Wed, 2 Jan 2013 14:19:08 +0800 Subject: [PATCH] GitLogParser.js --- GitLogParser.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/GitLogParser.js b/GitLogParser.js index de22d572..293bfabc 100644 --- a/GitLogParser.js +++ b/GitLogParser.js @@ -195,7 +195,7 @@ for (var h in res) { for (var p in res[h]) { if (p == 'LONGIDLE') { var idletime = Math.floor(res[h][p].total/60000) ; - print(h + ' ' + Math.floor(res[h][p].total/60000) +'m LONGIDLE' ); + //print(h + ' ' + Math.floor(res[h][p].total/60000) +'m LONGIDLE' ); totals.idle += idletime; @@ -203,7 +203,7 @@ for (var h in res) { } if (p == 'IDLE') { var idletime = Math.floor(res[h][p].total/60000) ; - print(h + ' ' + Math.floor(res[h][p].total/60000) +'m SHORT IDLE' ); + //print(h + ' ' + Math.floor(res[h][p].total/60000) +'m SHORT IDLE' ); totals.shortidle += idletime; @@ -211,7 +211,7 @@ for (var h in res) { } - print(h + ' ' + Math.floor(res[h][p].total/60000) +'m ' + p ); + //print(h + ' ' + Math.floor(res[h][p].total/60000) +'m ' + p ); totals.work += Math.floor(res[h][p].total/60000) ; for (var k in res[h][p].items) { -- 2.39.2