@wrongstack/acp 0.281.3 → 0.282.1

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/index.js CHANGED
@@ -2391,7 +2391,14 @@ var ACPSession = class _ACPSession {
2391
2391
  return;
2392
2392
  }
2393
2393
  if (msg.method) {
2394
- console.warn(`[acp-session] unhandled method: ${msg.method}`);
2394
+ console.warn(
2395
+ JSON.stringify({
2396
+ level: "warn",
2397
+ event: "acp_session.unhandled_method",
2398
+ method: msg.method,
2399
+ timestamp: (/* @__PURE__ */ new Date()).toISOString()
2400
+ })
2401
+ );
2395
2402
  }
2396
2403
  }
2397
2404
  handleUpdate(msg) {