File size: 591 Bytes
f778c12 | 1 2 3 4 5 6 7 8 9 10 11 12 | /** 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";
|