Skip to content

Commit

Permalink
fixup(vats): silence produce/consume logging
Browse files Browse the repository at this point in the history
  • Loading branch information
dckc authored and michaelfig committed Jan 16, 2022
1 parent 972cb1c commit 04372d9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/vats/src/bootstrap-core.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const makePromiseSpace = () => {
if (kit) {
return kit;
} else {
console.info(name, ': new Promise');
// console.info(name, ': new Promise');
kit = makePromiseKit();
state.set(name, kit);
return kit;
Expand All @@ -45,8 +45,8 @@ const makePromiseSpace = () => {
{
get: (_target, name) => {
assert.typeof(name, 'string');
const { resolve, promise } = findOrCreateKit(name);
promise.then(() => console.info(name, ': resolve'));
const { resolve } = findOrCreateKit(name);
// promise.then(() => console.info(name, ': resolve'));
// Note: repeated resolves() are noops.
return harden({ resolve });
},
Expand Down

0 comments on commit 04372d9

Please sign in to comment.