public void GetLogs()
        {
            var logs = _logRepository.GetAllLogs().Where(x => x.Action == Actions.Defuse && x.Player.NickName == "DJoony").ToList();

            logs.ForEach(PrintLog);
        }