commit | d4fd300cf411323a5216dd2cba5905c1d2dec7f9 | [log] [tgz] |
---|---|---|
author | Jeff Thompson <jeff@thefirst.org> | Mon Apr 01 20:41:38 2013 -0700 |
committer | Jeff Thompson <jeff@thefirst.org> | Mon Apr 01 20:41:38 2013 -0700 |
tree | ad64e63acad50fca6a91c1f17bfffcf8afc308f0 | |
parent | facbb84c471f3462b1effd89c556c1da9b5cd56a [diff] [blame] |
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"); } };