aboutsummaryrefslogtreecommitdiffstats
path: root/data
diff options
context:
space:
mode:
Diffstat (limited to 'data')
-rw-r--r--data/lib/logging-front.js5
1 files changed, 1 insertions, 4 deletions
diff --git a/data/lib/logging-front.js b/data/lib/logging-front.js
index 4b0a3f9..b3a175d 100644
--- a/data/lib/logging-front.js
+++ b/data/lib/logging-front.js
@@ -14,7 +14,7 @@ function addLogRecord() {
rec.title = document.title;
var comment = window.prompt(
"Enter comments for this comment");
- if (comment) {
+ if (comment !== null) {
comment = comment.trim();
if (comment.length > 0) {
comment = comment.trim();
@@ -25,10 +25,7 @@ function addLogRecord() {
rec.key = dateStr + "+" +
urlStr + "+" + bugNo;
postMessage(new Message("AddLogRecord", rec));
- } else {
- console.log("Empty string!");
}
- console.log("addLogRecord : rec = " + rec.toSource());
return rec;
}
return null;