Log sessionid on game start

This commit is contained in:
Dev 2023-05-30 13:55:46 +01:00
parent 774357c1f3
commit 22279a7353

View File

@ -66,6 +66,8 @@ export class GameController
public gameStart(_url: string, _info: IEmptyRequestData, sessionID: string, startTimeStampMS: number): void
{
this.logger.debug(`Started game with sessionId: ${sessionID}`);
// Store start time in app context
this.applicationContext.addValue(ContextVariableType.CLIENT_START_TIMESTAMP, startTimeStampMS);