@@ -8,7 +8,12 @@ using UnityEngine.Networking;
public interface ISendLogService : IService
{
- void SendLog(string tag, string message);
+ /// <summary>
+ /// 发送日志
+ /// </summary>
+ /// <param name="level">自定义参数</param>
+ /// <param name="message">要发送的日志信息</param>
+ void SendLog(string level, string message);
}
public class SendLogService : ISendLogService