deploy: print # of characters in write

This commit is contained in:
Christopher Monsanto 2020-08-25 02:40:22 -04:00
parent b666ad2619
commit 6625b457e6

View File

@ -117,7 +117,7 @@ export class ActionQueue {
if (op.type === 'Copy') {
console.log(`COPY: ${op.src} ==> ${entry.dst}${addendum}`);
} else if (op.type === 'Write') {
console.log(`WRITE: ${entry.dst}${addendum}`);
console.log(`WRITE: ${op.data.length} characters ==> ${entry.dst}${addendum}`);
}
} else if (entry.type === 'Debug') {
let addendum = '';