Merge pull request #72 from HXiaoMing/feat-custom-logger
feat(YooLogger):支持自定义日志处理,方便收集线上问题pull/82/head
commit
ef13e19c48
|
@ -2,15 +2,38 @@
|
||||||
|
|
||||||
namespace YooAsset
|
namespace YooAsset
|
||||||
{
|
{
|
||||||
|
|
||||||
|
public abstract class IYooLogger
|
||||||
|
{
|
||||||
|
public abstract void Info(string msg);
|
||||||
|
public abstract void Warning(string msg);
|
||||||
|
|
||||||
|
public abstract void Error(string msg);
|
||||||
|
public abstract void Exception(System.Exception exception);
|
||||||
|
}
|
||||||
|
|
||||||
internal static class YooLogger
|
internal static class YooLogger
|
||||||
{
|
{
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 自定义日志处理
|
||||||
|
/// </summary>
|
||||||
|
public static IYooLogger Logger = null;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 日志
|
/// 日志
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[Conditional("DEBUG")]
|
[Conditional("DEBUG")]
|
||||||
public static void Log(string info)
|
public static void Log(string info)
|
||||||
{
|
{
|
||||||
UnityEngine.Debug.Log(info);
|
if (Logger != null)
|
||||||
|
{
|
||||||
|
Logger.Info(info);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
UnityEngine.Debug.Log(info);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -18,7 +41,14 @@ namespace YooAsset
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static void Warning(string info)
|
public static void Warning(string info)
|
||||||
{
|
{
|
||||||
UnityEngine.Debug.LogWarning(info);
|
if (Logger != null)
|
||||||
|
{
|
||||||
|
Logger.Warning(info);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
UnityEngine.Debug.LogWarning(info);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -26,7 +56,14 @@ namespace YooAsset
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static void Error(string info)
|
public static void Error(string info)
|
||||||
{
|
{
|
||||||
UnityEngine.Debug.LogError(info);
|
if (Logger != null)
|
||||||
|
{
|
||||||
|
Logger.Error(info);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
UnityEngine.Debug.LogError(info);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -34,7 +71,14 @@ namespace YooAsset
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static void Exception(System.Exception exception)
|
public static void Exception(System.Exception exception)
|
||||||
{
|
{
|
||||||
UnityEngine.Debug.LogException(exception);
|
if (Logger != null)
|
||||||
|
{
|
||||||
|
Logger.Exception(exception);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
UnityEngine.Debug.LogException(exception);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -184,6 +184,15 @@ namespace YooAsset
|
||||||
DownloadSystem.CertificateHandlerInstance = instance;
|
DownloadSystem.CertificateHandlerInstance = instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// 自定义日志处理
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="logger"></param>
|
||||||
|
public static void SetLogger(IYooLogger logger)
|
||||||
|
{
|
||||||
|
YooLogger.Logger = logger;
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// 设置下载系统参数,自定义下载请求
|
/// 设置下载系统参数,自定义下载请求
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
Loading…
Reference in New Issue