Gateway: add compact ws verbose logs

This commit is contained in:
Peter Steinberger
2025-12-18 13:07:26 +00:00
parent c2b8f9a7c3
commit ad26026802
3 changed files with 136 additions and 0 deletions

11
src/gateway/ws-logging.ts Normal file
View File

@@ -0,0 +1,11 @@
export type GatewayWsLogStyle = "full" | "compact";
let gatewayWsLogStyle: GatewayWsLogStyle = "full";
export function setGatewayWsLogStyle(style: GatewayWsLogStyle): void {
gatewayWsLogStyle = style;
}
export function getGatewayWsLogStyle(): GatewayWsLogStyle {
return gatewayWsLogStyle;
}