OpenClaw问题汇总
1. 对话报错“400 Total tokens of image and text exceed max message tokens.”
使用指令/new新建对话
2. Telegram机器人长时间正在输入后无结果输出,日志报错“typing TTL reached (2m); stopping typing indicator”
禁用输入指示器(两种方法):
使用Control UI修改Agents设置,将Typing Mode设置为“Never”
或者编辑openclaw.json,在agents配置部分增加"typingMode": "never",
3. 2026.4.24启动报错“ Unhandled promise rejection: CIAO PROBING CANCELLED”,完整日志如下
{"0":"[openclaw] Unhandled promise rejection: CIAO PROBING CANCELLED","_meta":{"runtime":"node","runtimeVersion":"25.5.0","hostname":"unknown","name":"openclaw","date":"2026-04-26T00:49:44.027Z","logLevelId":5,"logLevelName":"ERROR","path":{"fullFilePath":"file:///home/openclaw/.npm-global/lib/node_modules/openclaw/dist/subsystem-CWI_MDy_.js:161:68","fileName":"subsystem-CWI_MDy_.js","fileNameWithLine":"subsystem-CWI_MDy_.js:161","fileColumn":"68","fileLine":"161","filePath":".npm-global/lib/node_modules/openclaw/dist/subsystem-CWI_MDy_.js","filePathWithLine":".npm-global/lib/node_modules/openclaw/dist/subsystem-CWI_MDy_.js:161","method":"console.error"}},"time":"2026-04-26T08:49:44.027+08:00"}修改openclaw.json配置文件,在plugins部分增加配置禁用Bonjour discovery
"bonjour": {
"enabled": false
}