写日志文件工具类

作者:追风剑情 发布于:2015-5-9 13:51 分类:Unity3d

在游戏的数据目录下生成日志文件,方便技术跟踪问题。


  1. using UnityEngine;
  2. using System.Collections;
  3. using System.IO;
  4. using System.Text;
  5.  
  6. public class LogFile
  7. {
  8. // 日志级别枚举
  9. public enum LogLevel
  10. {
  11. verbose,
  12. debug,
  13. info,
  14. warn,
  15. error,
  16. assert
  17. }
  18.  
  19. // 当前日志级别
  20. public static LogLevel logLevel = LogLevel.verbose;
  21.  
  22. private static string LOG_FILE_PATH = Application.dataPath + "\\game.log";
  23.  
  24. public static void Verbose(params string[] args)
  25. {
  26. Write(args);
  27. }
  28.  
  29. public static void Debug(params string[] args)
  30. {
  31. if ((int)logLevel <= 1)
  32. Write(args);
  33. }
  34.  
  35. public static void Info(params string[] args)
  36. {
  37. if ((int)logLevel <= 2)
  38. Write(args);
  39. }
  40.  
  41. public static void Warn(params string[] args)
  42. {
  43. if ((int)logLevel <= 3)
  44. Write(args);
  45. }
  46.  
  47. public static void Error(params string[] args)
  48. {
  49. if ((int)logLevel <= 4)
  50. Write(args);
  51. }
  52.  
  53. public static void Assert(params string[] args)
  54. {
  55. if ((int)logLevel <= 5)
  56. Write(args);
  57. }
  58.  
  59. private static void Write(params string[] args)
  60. {
  61. #if UNITY_STANDALONE_WIN && !UNITY_EDITOR
  62. if (args.Length > 0)
  63. {
  64. for (int i = 0; i < args.Length; i++)
  65. {
  66. File.AppendAllText(LOG_FILE_PATH, args[i], Encoding.UTF8);
  67. File.AppendAllText(LOG_FILE_PATH, "\r\n", Encoding.UTF8);
  68. }
  69. }
  70. #endif
  71. }
  72. }



标签: Unity3d

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号