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}"; } }