xyi/Library/PackageCache/com.unity.test-framework@f4d49bd0d832/UnityEditor.TestRunner/UnityTestProtocol/UtpDebuglogger.cs
Vladislav 2750530006 1
2025-09-18 15:33:57 +03:00

17 lines
423 B
C#

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