14 lines
346 B
TypeScript
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;
|