提交工程

This commit is contained in:
2026-05-20 12:01:19 +08:00
commit e0ddde0393
5502 changed files with 596320 additions and 0 deletions
+70
View File
@@ -0,0 +1,70 @@
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)
{
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.IsVerboseLoggingEnabled())
{
Debug.Log("Debug [" + SdkTag + "] " + message);
}
}
/// <summary>
/// Log warning messages.
/// </summary>
public static void UserWarning(string message)
{
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.IsVerboseLoggingEnabled())
{
Debug.LogWarning("Warning [" + SdkTag + "] " + message);
}
}
/// <summary>
/// Log error messages.
/// </summary>
public static void UserError(string message)
{
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.IsVerboseLoggingEnabled())
{
Debug.LogError("Error [" + SdkTag + "] " + message);
}
}
}