YooLogger.cs 668 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. using System.Diagnostics;
  2. namespace YooAsset
  3. {
  4. internal static class YooLogger
  5. {
  6. /// <summary>
  7. /// 日志
  8. /// </summary>
  9. [Conditional("DEBUG")]
  10. public static void Log(string info)
  11. {
  12. UnityEngine.Debug.Log(info);
  13. }
  14. /// <summary>
  15. /// 警告
  16. /// </summary>
  17. public static void Warning(string info)
  18. {
  19. UnityEngine.Debug.LogWarning(info);
  20. }
  21. /// <summary>
  22. /// 错误
  23. /// </summary>
  24. public static void Error(string info)
  25. {
  26. UnityEngine.Debug.LogError(info);
  27. }
  28. /// <summary>
  29. /// 异常
  30. /// </summary>
  31. public static void Exception(System.Exception exception)
  32. {
  33. UnityEngine.Debug.LogException(exception);
  34. }
  35. }
  36. }