mirror of
https://github.com/sp-tarkov/server.git
synced 2025-02-13 09:50:43 -05:00
**Description** This pull request changes the WebSocket connection `handle lost` log message in the `wsOnConnection` method of the `GameSocket` class. The original log message was: ```typescript this.logger.debug(this.localisationService.getText("websocket-socket_lost_deleting_handle"); >>> [WS] Socket lost, deleting handle, status: %s ``` Which was inconsistent with most other languages. It can be understood from context that the socket was lost, therefor deleted and closed. Instead now; ```typescript this.logger.debug(this.localisationService.getText("websocket-socket_lost_deleting_handle"); >>> [WS] Socket lost, deleting handle ``` This is achieved through editing the languages one by one and removing the "`status: %s`" component. **Related** - Closes: SPT-AKI/Issues#421 Co-authored-by: Deadly <info.saddiki@gmail.com> Reviewed-on: SPT-AKI/Server#214 Co-authored-by: Deadly Alden <deadly@noreply.dev.sp-tarkov.com> Co-committed-by: Deadly Alden <deadly@noreply.dev.sp-tarkov.com>