private void OnFindMatch(int skill, string shortCode)
 {
     _matchService.FindMatch(skill, shortCode, (err) => // on match making Error
     {
         OnLogEntryReceived(LogEntryFactory.CreateMatchMakingErrorLogEntry(err));
     });
     OnLogEntryReceived(LogEntryFactory.CreateMatchMakingRequestLogEntry(skill, shortCode));
 }