Fix OpenClaw review issues

This commit is contained in:
YeonGyu-Kim
2026-03-16 22:28:54 +09:00
parent b79df5e018
commit c644930753
14 changed files with 412 additions and 194 deletions
+4 -1
View File
@@ -1,6 +1,9 @@
import { pollLoop } from "./reply-listener"
import { pollLoop, logReplyListenerMessage } from "./reply-listener"
pollLoop().catch((err) => {
logReplyListenerMessage(
`FATAL: reply listener daemon crashed: ${err instanceof Error ? err.stack ?? err.message : String(err)}`,
)
console.error(err)
process.exit(1)
})