Files
openclaw/src/logging/redact.test-support.ts
Peter Steinberger 9497450511 refactor: eliminate dead-export baseline (#108376)
Burn the grandfathered unused-export baseline to zero and enforce a hard-zero Knip gate.
2026-07-15 17:05:07 +01:00

9 lines
368 B
TypeScript

import type { OpenClawConfig } from "../config/types.openclaw.js";
import { fullContextToolPayloadRedactionState } from "./redact-internal-state.js";
type LoggingConfig = OpenClawConfig["logging"];
export function withFullContextToolPayloadRedaction(loggingConfig: LoggingConfig): LoggingConfig {
return fullContextToolPayloadRedactionState.mark(loggingConfig);
}