openclaw-elys 1.8.3 → 1.8.5

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.
@@ -39,7 +39,7 @@ export async function monitorElysProvider(opts) {
39
39
  const finalizeCtx = core?.channel?.reply?.finalizeInboundContext;
40
40
  log(`[elys] pluginRuntime available: ${!!core}, dispatchReplyFromConfig: ${!!dispatchReplyFromConfig}, createDispatcher: ${!!createDispatcher}, finalizeCtx: ${!!finalizeCtx}`);
41
41
  const commandHandler = async (cmd, signal) => {
42
- log(`[elys] executing command: ${cmd.command}`, cmd.args);
42
+ log(`[elys] executing command: ${cmd.command} args=${JSON.stringify(cmd.args)} media_url=${cmd.media_url ?? "none"} media_urls=${JSON.stringify(cmd.media_urls ?? [])}`);
43
43
  if (dispatchReplyFromConfig && finalizeCtx && createDispatcher) {
44
44
  try {
45
45
  let seq = 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openclaw-elys",
3
- "version": "1.8.3",
3
+ "version": "1.8.5",
4
4
  "description": "OpenClaw Elys channel plugin — connects to Elys App",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",