Switch to clawdis RPC mode and complete rebrand

This commit is contained in:
Peter Steinberger
2025-12-05 17:22:53 +00:00
parent 20cb709ae3
commit b3e50cbb33
26 changed files with 151 additions and 103 deletions

View File

@@ -125,7 +125,7 @@ if (isMain) {
// These log the error and exit gracefully instead of crashing without trace.
process.on("unhandledRejection", (reason, _promise) => {
console.error(
"[warelay] Unhandled promise rejection:",
"[clawdis] Unhandled promise rejection:",
reason instanceof Error ? (reason.stack ?? reason.message) : reason,
);
process.exit(1);
@@ -133,7 +133,7 @@ if (isMain) {
process.on("uncaughtException", (error) => {
console.error(
"[warelay] Uncaught exception:",
"[clawdis] Uncaught exception:",
error.stack ?? error.message,
);
process.exit(1);