123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- using System;
- using UnityEngine;
- public class MaxSdkLogger
- {
- private const string SdkTag = "AppLovin MAX";
- public const string KeyVerboseLoggingEnabled = "com.applovin.verbose_logging_enabled";
- /// <summary>
- /// Log debug messages.
- /// </summary>
- public static void UserDebug(string message)
- {
- if (MaxSdk.DisableAllLogs) return;
- Debug.Log("Debug [" + SdkTag + "] " + message);
- }
- /// <summary>
- /// Log debug messages when verbose logging is enabled.
- ///
- /// Verbose logging can be enabled by calling <see cref="MaxSdk.SetVerboseLogging"/> or via the Integration Manager for build time logs.
- /// </summary>
- public static void D(string message)
- {
- if (MaxSdk.DisableAllLogs && !MaxSdk.IsVerboseLoggingEnabled()) return;
- Debug.Log("Debug [" + SdkTag + "] " + message);
- }
- /// <summary>
- /// Log warning messages.
- /// </summary>
- public static void UserWarning(string message)
- {
- if (MaxSdk.DisableAllLogs) return;
- Debug.LogWarning("Warning [" + SdkTag + "] " + message);
- }
- /// <summary>
- /// Log warning messages when verbose logging is enabled.
- ///
- /// Verbose logging can be enabled by calling <see cref="MaxSdk.SetVerboseLogging"/> or via the Integration Manager for build time logs.
- /// </summary>
- public static void W(string message)
- {
- if (MaxSdk.DisableAllLogs && !MaxSdk.IsVerboseLoggingEnabled()) return;
- Debug.LogWarning("Warning [" + SdkTag + "] " + message);
- }
- /// <summary>
- /// Log error messages.
- /// </summary>
- public static void UserError(string message)
- {
- if (MaxSdk.DisableAllLogs) return;
- Debug.LogError("Error [" + SdkTag + "] " + message);
- }
- /// <summary>
- /// Log error messages when verbose logging is enabled.
- ///
- /// Verbose logging can be enabled by calling <see cref="MaxSdk.SetVerboseLogging"/> or via the Integration Manager for build time logs.
- /// </summary>
- public static void E(string message)
- {
- if (MaxSdk.DisableAllLogs && !MaxSdk.IsVerboseLoggingEnabled()) return;
- Debug.LogError("Error [" + SdkTag + "] " + message);
- }
- /// <summary>
- /// Log exceptions.
- /// </summary>
- public static void LogException(Exception exception)
- {
- if (MaxSdk.DisableAllLogs) return;
-
- Debug.LogException(exception);
- }
- }
|