openclaw / src /acp /runtime /errors.ts
SaylorTwift's picture
SaylorTwift HF Staff
Add files using upload-large-folder tool
f778c12 verified
Raw
History Blame Contribute Delete
591 Bytes
/** ACP runtime error exports wired to OpenClaw secret redaction. */
import { configureAcpErrorRedactor } from "@openclaw/acp-core";
import { redactToolPayloadText } from "../../logging/redact.js";
// Core must import ACP errors and error text only through this barrel so the
// canonical redactor is configured first. It merges operator patterns with the
// defaults so custom logging policy cannot disable provider-token coverage.
configureAcpErrorRedactor(redactToolPayloadText);
export * from "@openclaw/acp-core/runtime/errors";
export * from "@openclaw/acp-core/runtime/error-text";