Ejemplo n.º 1
0
        public static void AddErrorEvent(
            GAErrorSeverity severity,
            string message,
            IDictionary <string, object> fields)
        {
            string jsonString = GA_Wrapper.DictionaryToJsonString(fields);

            GA_Wrapper.addErrorEvent((int)severity, message, jsonString);
        }
Ejemplo n.º 2
0
 // Token: 0x060001F4 RID: 500 RVA: 0x0000D1DB File Offset: 0x0000B5DB
 public static void AddErrorEvent(GAErrorSeverity severity, string message)
 {
     GA_Wrapper.addErrorEvent((int)severity, message);
 }