9 lines
300 B
C#
9 lines
300 B
C#
public static class AdReadyStateLog
|
|
{
|
|
public static string FormatReadyCheck(string format, string adUnitId, bool isReady)
|
|
{
|
|
string status = isReady ? "OK" : "WARNING";
|
|
return $"[{format}] Loaded callback ready check: adUnitId={adUnitId}, IsReady={isReady}, {status}";
|
|
}
|
|
}
|