remove unnecessary console.log

pull/1/head
ansuz 2020-12-11 17:04:57 +05:30
parent d0df2f5840
commit 4a3ac980f4
1 changed files with 0 additions and 3 deletions

View File

@ -406,10 +406,7 @@ var factory = function () {
getBlobCache(cacheKey, function (err, u8) {
if (err || !u8) { return void fetch(); }
var size = Decrypt.decodePrefix(u8.subarray(0,2));
console.error(size); // XXX noise
cb(null, u8.subarray(0, size+2));
});
};