openclaw/src/gateway/ws-logging.ts

14 lines
346 B
TypeScript
Raw Normal View History

export type GatewayWsLogStyle = "auto" | "full" | "compact";
2025-12-18 13:07:26 +00:00
let gatewayWsLogStyle: GatewayWsLogStyle = "auto";
2025-12-18 13:07:26 +00:00
export function setGatewayWsLogStyle(style: GatewayWsLogStyle): void {
gatewayWsLogStyle = style;
}
export function getGatewayWsLogStyle(): GatewayWsLogStyle {
return gatewayWsLogStyle;
}
export const DEFAULT_WS_SLOW_MS = 50;