Skip to content

Commit

Permalink
add queryPollResolvers results log
Browse files Browse the repository at this point in the history
  • Loading branch information
defi-dev committed Jul 2, 2024
1 parent 65ae7b2 commit c38eef5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions app/Network.ts
Original file line number Diff line number Diff line change
Expand Up @@ -607,8 +607,6 @@ export class Network {
return;
}

this.clog('debug', `CallResolvers: Polling ${resolversToCall.length} resolvers...`);

this.clog('debug', `CallResolvers: Polling ${resolversToCall.length} resolvers...`);
let results = null,
jobsToExecute = 0;
Expand All @@ -618,6 +616,7 @@ export class Network {
this.clog('error', `queryPollResolvers error: ${e.message}`);
return;
}
this.clog('debug', `CallResolvers: Polling resolver results: ${JSON.stringify(results)}`);

for (let i = 0; i < results.length; i++) {
const decoded = results[i].success
Expand Down

0 comments on commit c38eef5

Please sign in to comment.