@wrongstack/acp 0.282.0 → 0.282.2

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/dist/sdk.js CHANGED
@@ -1429,7 +1429,14 @@ var ACPSession = class _ACPSession {
1429
1429
  return;
1430
1430
  }
1431
1431
  if (msg.method) {
1432
- console.warn(`[acp-session] unhandled method: ${msg.method}`);
1432
+ console.warn(
1433
+ JSON.stringify({
1434
+ level: "warn",
1435
+ event: "acp_session.unhandled_method",
1436
+ method: msg.method,
1437
+ timestamp: (/* @__PURE__ */ new Date()).toISOString()
1438
+ })
1439
+ );
1433
1440
  }
1434
1441
  }
1435
1442
  handleUpdate(msg) {