UnityLogger.cs 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. using System;
  2. namespace ET
  3. {
  4. public class UnityLogger: ILog
  5. {
  6. public void Trace(string msg)
  7. {
  8. UnityEngine.Debug.Log(msg);
  9. }
  10. public void Debug(string msg)
  11. {
  12. UnityEngine.Debug.Log(msg);
  13. }
  14. public void Info(string msg)
  15. {
  16. UnityEngine.Debug.Log(msg);
  17. }
  18. public void Warning(string msg)
  19. {
  20. UnityEngine.Debug.LogWarning(msg);
  21. }
  22. public void Error(string msg)
  23. {
  24. UnityEngine.Debug.LogError(msg);
  25. }
  26. public void Error(Exception e)
  27. {
  28. UnityEngine.Debug.LogException(e);
  29. }
  30. public void Trace(string message, params object[] args)
  31. {
  32. UnityEngine.Debug.LogFormat(message, args);
  33. }
  34. public void Warning(string message, params object[] args)
  35. {
  36. UnityEngine.Debug.LogWarningFormat(message, args);
  37. }
  38. public void Info(string message, params object[] args)
  39. {
  40. UnityEngine.Debug.LogFormat(message, args);
  41. }
  42. public void Debug(string message, params object[] args)
  43. {
  44. UnityEngine.Debug.LogFormat(message, args);
  45. }
  46. public void Error(string message, params object[] args)
  47. {
  48. UnityEngine.Debug.LogErrorFormat(message, args);
  49. }
  50. }
  51. }