暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

UtpDebuglogger.cs 423B

12345678910111213141516
  1. using System;
  2. using UnityEngine;
  3. namespace UnityEditor.TestTools.TestRunner.UnityTestProtocol
  4. {
  5. internal class UtpDebugLogger : IUtpLogger
  6. {
  7. internal const string UtpPrefix = "\n##utp:";
  8. public void Log(Message msg)
  9. {
  10. var msgJson = JsonUtility.ToJson(msg);
  11. Debug.LogFormat(LogType.Log, LogOption.NoStacktrace, null, "{0}{1}", UtpPrefix, msgJson);
  12. }
  13. }
  14. }