@acrobits/ipc-sdk 0.8.1-alpha.15 → 0.8.1-alpha.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/ipc-sdk.js CHANGED
@@ -2506,7 +2506,10 @@ class xt {
2506
2506
  return ne(this.negotiatedProtocolVersion, t);
2507
2507
  }
2508
2508
  logReceived(t) {
2509
- const e = (r) => this.logService.debug(`[IPC] Received ${r.type} message`, r);
2509
+ const e = (r) => this.logService.debug(
2510
+ `[IPC] Received ${r.type} message${r.replyTo ? " reply" : ""}`,
2511
+ r
2512
+ );
2510
2513
  if (t) {
2511
2514
  It(t) && (t = { ...t, data: "..." }), e(t);
2512
2515
  return;