Make console.log call dump("\n") separately.
diff --git a/ndnProtocol/modules/ndn-js-header.txt b/ndnProtocol/modules/ndn-js-header.txt
index 73af4fb..a68be5d 100644
--- a/ndnProtocol/modules/ndn-js-header.txt
+++ b/ndnProtocol/modules/ndn-js-header.txt
@@ -20,7 +20,8 @@
 // Some code calls console.log without checking LOG>0.  Until this is cleaned up, make a local hack console.
 var console = {
     log: function(message) {
-        dump(message + "\n");
+        dump(message);
+        dump("\n");
     }
 };