Skip to content

Commit

Permalink
chore(swingset): comment out comms GC debug prints
Browse files Browse the repository at this point in the history
Comms is still ignoring these GC actions, but now it will do so quietly.
  • Loading branch information
warner committed Jun 11, 2021
1 parent fdf0c92 commit 2ad50b8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/SwingSet/src/vats/comms/dispatch.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,21 +152,21 @@ export function buildCommsDispatch(
assert(Array.isArray(vrefs));
vrefs.map(vref => insistVatType('object', vref));
vrefs.map(vref => assert(parseVatSlot(vref).allocatedByVat));
console.log(`-- comms ignoring dropExports`);
// console.log(`-- comms ignoring dropExports`);
}

function retireExports(vrefs) {
assert(Array.isArray(vrefs));
vrefs.map(vref => insistVatType('object', vref));
vrefs.map(vref => assert(parseVatSlot(vref).allocatedByVat));
console.log(`-- comms ignoring retireExports`);
// console.log(`-- comms ignoring retireExports`);
}

function retireImports(vrefs) {
assert(Array.isArray(vrefs));
vrefs.map(vref => insistVatType('object', vref));
vrefs.map(vref => assert(!parseVatSlot(vref).allocatedByVat));
console.log(`-- comms ignoring retireImports`);
// console.log(`-- comms ignoring retireImports`);
}

function dispatch(vatDeliveryObject) {
Expand Down

0 comments on commit 2ad50b8

Please sign in to comment.