Esempio n. 1
0
 void Log(string text, bool toConsole = true)
 {
     if (toConsole)
     {
         CurrentLoginProvider.Log(text);
         UpdateDebugTextFromProvider();
     }
     Debug.Log(text);
 }
Esempio n. 2
0
 public void HandleLogout()
 {
     Logger.Log("Logging out with current Login Provider...");
     ClearLog();
     CurrentLoginProvider.SignOutAsync().ContinueWith(t =>
     {
         ProcessResult(t);
     });
 }
Esempio n. 3
0
 public void ClearLog()
 {
     CurrentLoginProvider.ClearLog();
     UpdateDebugTextFromProvider();
 }