@zbruceli/openclaw-dchat 0.1.9 → 0.1.10

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/channel.ts +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zbruceli/openclaw-dchat",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "OpenClaw D-Chat/nMobile channel plugin — decentralized E2E encrypted messaging over the NKN relay network",
5
5
  "type": "module",
6
6
  "main": "index.ts",
package/src/channel.ts CHANGED
@@ -583,7 +583,8 @@ export const dchatPlugin: ChannelPlugin<ResolvedDchatAccount> = {
583
583
  markDispatchIdle?.();
584
584
  });
585
585
  } catch (err) {
586
- logger.error(`[${account.accountId}] inbound handler error`, { error: String(err) });
586
+ const errDetail = err instanceof Error ? `${err.message}\n${err.stack}` : String(err);
587
+ logger.error(`[${account.accountId}] inbound handler error: ${errDetail}`);
587
588
  }
588
589
  })();
589
590
  });