public static void AnalyticsEvent(string eventName, IDictionary <string, object> data) { EventStream.Publish(new AnalyticsEvent { eventName = eventName, data = data }); }
public static void LogReceived(string log, string stackTrace, LogType type) { EventStream.Publish(new ReceivedLog { log = log, stackTrace = stackTrace, type = type }); }