update: 更新日志

Signed-off-by: huyufei <yufei.hu@castbox.fm>
胡宇飞 2024-08-11 19:35:37 +08:00
parent e7b116de63
commit cd94ca9479
3 changed files with 4 additions and 4 deletions

View File

@ -32,12 +32,12 @@ namespace Guru
_lastReportRateDate = DateTime.Now;
Debug.Log($"{TAG} [guru_analytic] --- InitGuruAnalyticService: IsDebug:{IsDebug} firebaseId:{firebaseId}");
Debug.Log($"{TAG} --- InitGuruAnalyticService: IsDebug:{IsDebug} firebaseId:{firebaseId}");
GuruAnalytics.Instance.Init(appId, deviceInfo, () =>
{
OnGuruAnalyticsInitComplete();
Debug.Log($"{TAG} [guru_analytic]--- Guru EXP: GroupId: {GuruAnalytics.Instance.ExperimentGroupId}");
Debug.Log($"{TAG} --- Guru EXP: GroupId: {GuruAnalytics.Instance.ExperimentGroupId}");
SetAnalyticsExperimentGroup(GuruAnalytics.Instance.ExperimentGroupId);
}, IsDebug, firebaseId); // Android 初始化

View File

@ -258,7 +258,7 @@ namespace Guru
var dataStr = "";
if (data != null) dataStr = JsonParser.ToJson(data);
Debug.Log($"[{TAG}] --- [SDK] TrackEvent: {eventName} | priority: {priority} | data:{dataStr} | eventSetting: {eventSetting}");
Debug.Log($"{TAG} --- [SDK] TrackEvent: {eventName} | priority: {priority} | data:{dataStr} | eventSetting: {eventSetting}");
try
{

View File

@ -290,7 +290,7 @@ namespace Guru
/// 设置 IDFA
/// </summary>
protected abstract void ReportIDFA(string idfa);
}