Skip to content
  • 当前项目
    • 正在载入...
  • 登录

ZAnti-Addiction / ZAnti-Addiction-Unity

转到一个项目
切换导航栏
切换导航栏固定状态
  • 项目
  • 群组
  • 代码片段
  • 帮助
  • 项目
  • 活动
  • 版本库
  • 流水线
  • 图表
  • 问题 0
  • 合并请求 0
  • 维基
  • 网络
  • 创建新的问题
  • 作业
  • 提交
  • 问题看板
  • 文件
  • 提交
  • 网络
  • 比较
  • 分支
  • 标签
切换分支/标签
  • ZAnti-Addiction-Unity
  • ..
  • UnityTestProtocol
  • UtpDebuglogger.cs
  • 王帅's avatar
    ZAnti-Addiction · a68b262d
    王帅 提交于 2023-01-16 11:56:55 +0800
    a68b262d 浏览目录
UtpDebuglogger.cs 352 Bytes
原文件 审查 历史 永久链接
1 2 3 4 5 6 7 8 9 10 11 12 13
using UnityEngine;

namespace UnityEditor.TestTools.TestRunner.UnityTestProtocol
{
    class UtpDebugLogger : IUtpLogger
    {
        public void Log(Message msg)
        {
            var msgJson = JsonUtility.ToJson(msg);
            Debug.LogFormat(LogType.Log, LogOption.NoStacktrace, null, "\n##utp:{0}", msgJson);
        }
    }
}