Skip to content

Commit

Permalink
Add one more debug message to visibly show chunks count
Browse files Browse the repository at this point in the history
Applies to OpenUserJS#678
  • Loading branch information
Martii committed Oct 6, 2015
1 parent 97f228f commit f936a95
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions controllers/scriptStorage.js
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,11 @@ exports.getMeta = function (aChunks, aCallback) {
var blocksContent = {};
var blocks = {};

if (isDbg) {
console.log('> getMeta() > aChunks.length');
console.log(aChunks.length);
}

var buf = Buffer.concat(aChunks);
var str = buf.toString('utf8');

Expand Down

0 comments on commit f936a95

Please sign in to comment.