Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[do not merge!] feat: add dd logs #747

Closed
wants to merge 16 commits into from
Closed
Prev Previous commit
Next Next commit
fix: update yarn.lock
  • Loading branch information
romin-halltari committed Jun 6, 2024
commit 6f134c142cc3898c4ca51df46b1b9a52c23e0a8a
4 changes: 2 additions & 2 deletions packages/@magic-sdk/provider/src/core/view-controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,10 +180,10 @@ export abstract class ViewController {

if (!this.isReadyForRequest) {
logInfo('waiting for ready', { msgType, payload });
this.externalLogger.log('waiting for ready', { msgType, payload });
this.externalLogger?.log('waiting for ready', { msgType, payload });
await this.waitForReady();
logInfo('ready for requests', { msgType, payload });
this.externalLogger.log('ready for requests', { msgType, payload });
this.externalLogger?.log('ready for requests', { msgType, payload });
}

const batchData: JsonRpcResponse[] = [];
Expand Down
Loading