Files
clawdbot/src/gateway/ws-logging.ts
2025-12-18 13:27:52 +00:00

14 lines
346 B
TypeScript

export type GatewayWsLogStyle = "auto" | "full" | "compact";
let gatewayWsLogStyle: GatewayWsLogStyle = "auto";
export function setGatewayWsLogStyle(style: GatewayWsLogStyle): void {
gatewayWsLogStyle = style;
}
export function getGatewayWsLogStyle(): GatewayWsLogStyle {
return gatewayWsLogStyle;
}
export const DEFAULT_WS_SLOW_MS = 50;