2025-12-18 13:27:45 +00:00
|
|
|
export type GatewayWsLogStyle = "auto" | "full" | "compact";
|
2025-12-18 13:07:26 +00:00
|
|
|
|
2025-12-18 13:27:45 +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;
|
|
|
|
|
}
|
2025-12-18 13:27:45 +00:00
|
|
|
|
|
|
|
|
export const DEFAULT_WS_SLOW_MS = 50;
|