Skip to content

Commit

Permalink
refactor: console.log placement
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelTaylor3D committed Feb 21, 2022
1 parent 6ea93a8 commit 504a5c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/datalayer/persistance.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ export const getStoreData = async (storeId, rootHash) => {
return data;
}

console.log('&&&&', data);
console.log(data);
}

return false;
Expand Down Expand Up @@ -193,7 +193,7 @@ export const subscribeToStoreOnDataLayer = async (storeId, ip, port) => {
}),
};

console.log('Subscribing to: ', storeId, ip, port);
console.log('RPC Call: '`${rpcUrl}/subscribe`, storeId, ip, port);

try {
const response = await request(
Expand Down

0 comments on commit 504a5c4

Please sign in to comment.