private static void LogResponse(string method, object parameters)
 {
     try
     {
         GetSocialLogs.D(string.Format("[Response] {0}: {1}", method, parameters));
     }
     catch
     {
         // Just to be sure we won't crash in logs
     }
 }
        private static void LogRequest(string method, object parameters = null)
        {
            try
            {
                var log = parameters == null
                    ? string.Format("[Request] {0}", method)
                    : string.Format("[Request] {0}, body: {1}", method, parameters);

                GetSocialLogs.D(log);
            }
            catch
            {
                // Just to be sure we won't crash in logs
            }
        }
 public void HandleOnStartUnityEvent()
 {
     GetSocialLogs.D("Not needed in OSX implementation");
 }