Skip to content

Commit a9450d3

Browse files
authored
removed JSON.stringify() (#97)
1 parent ea4ad7d commit a9450d3

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

server/helpers/websocket.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,7 @@ export const onClose = async (
8888
return;
8989
}
9090
subscriptionsData.splice(index, 1);
91-
request.log.debug(
92-
`Removed Subscription from localMem, new state`,
93-
JSON.stringify(subscriptionsData),
94-
);
91+
request.log.debug(`Removed Subscription from localMem`);
9592
};
9693

9794
export const wsTimeout = async (

0 commit comments

Comments
 (0)