1using System; 2 3namespace UnityEditor.TestTools.TestRunner.UnityTestProtocol 4{ 5 internal interface IUtpLogger 6 { 7 void Log(Message msg); 8 } 9}