using System.Collections.Generic; using System.Threading.Tasks; using Plugins.Countly.Helpers; using UnityEngine; namespace Plugins.Countly.Services.Impls.Wrapper { public class CrushReportsCountlyServiceWrapper : ICrushReportsCountlyService { public void LogCallback(string message, string stackTrace, LogType type) { } public Task SendCrashReportAsync(string message, string stackTrace, LogType type, IDictionary segments = null, bool nonfatal = true) { Debug.Log("[CrushReportsCountlyServiceWrapper] Send crush report async, message: \n" + message + "\n" + stackTrace + "\n " + type); return Task.FromResult(new CountlyResponse()); } public Task SendCrashReportAsync(string message, string stackTrace, LogType type, IDictionary segments = null) { Debug.Log("[CrushReportsCountlyServiceWrapper] Send crush report async, message: \n" + message + "\n" + stackTrace + "\n " + type); return Task.FromResult(new CountlyResponse()); } public void AddBreadcrumbs(string value) { Debug.Log("[CrushReportsCountlyServiceWrapper] Add breadcrumbs, value: " + value); } } }