update: 补全Log逻辑

deeplink
胡宇飞 2024-03-04 11:29:06 +08:00
parent 7da2acc15f
commit bc86f40bcd
1 changed files with 4 additions and 6 deletions

View File

@ -50,9 +50,11 @@ namespace Guru
/// <param name="debugGeography"></param>
/// <param name="dmaMapRule"></param>
/// <param name="enableCountryCheck"></param>
public static void StartConsent(Action<int> onComplete = null, string deviceId = "", int debugGeography = -1 , string dmaMapRule = "", bool enableCountryCheck = true)
public static void StartConsent(Action<int> onComplete = null,
string deviceId = "", int debugGeography = -1,
string dmaMapRule = "", bool enableCountryCheck = false)
{
Debug.Log($"{Tag} --- GuruConsent::StartConsent - deviceId:[{deviceId}] debugGeography:[{debugGeography}] dmaMapRule:[{dmaMapRule}]");
Debug.Log($"{Tag} --- GuruConsent::StartConsent - deviceId:[{deviceId}] debugGeography:[{debugGeography}] dmaMapRule:[{dmaMapRule}] enableCountryCheck:[{enableCountryCheck}]");
_dmaMapRule = dmaMapRule;
_enableCountryCheck = enableCountryCheck;
@ -155,7 +157,3 @@ namespace Guru
}
}