add log levels, make output less noisy

This commit is contained in:
2025-01-25 22:11:46 -08:00
parent afc6146050
commit 1490fc601b
5 changed files with 66 additions and 58 deletions

View File

@@ -227,7 +227,7 @@ export class EncFile {
const poolArray = this.pool.toUint8Array();
const bufArray = this.buf.toUint8Array();
const rval = new Uint8Array(poolArray.length + bufArray.length);
console.log('psize', poolArray.byteLength, poolArray.length)
// console.log('psize', poolArray.byteLength, poolArray.length)
rval.set(poolArray);
rval.set(bufArray, poolArray.length);
return rval;