Example #1
0
        /// <summary>
        /// Enables verbose debug logging for the Heyzap SDK.
        /// </summary>
        public static void ShowDebugLogs()
        {
            #if UNITY_ANDROID
            HeyzapAdsAndroid.ShowDebugLogs();
            #endif

            #if UNITY_IPHONE && !UNITY_EDITOR
            HeyzapAdsIOS.ShowDebugLogs();
            #endif
        }
 /// <summary>
 /// Enables verbose debug logging for the Heyzap SDK. For third party logging, <see cref="ShowThirdPartyDebugLogs()"/>.
 /// </summary>
 public static void ShowDebugLogs()
 {
     #if !UNITY_EDITOR && (UNITY_ANDROID || UNITY_IPHONE)
         #if UNITY_ANDROID
     HeyzapAdsAndroid.ShowDebugLogs();
         #elif UNITY_IPHONE
     HeyzapAdsIOS.ShowDebugLogs();
         #endif
     #else
     #endif
 }