Ejemplo n.º 1
0
 /// <summary>
 /// 打印警告
 /// </summary>
 /// <param name="message">消息</param>
 public void LogWarning(object message)
 {
     if (!HasLevel(DebugLevel.Warning))
     {
         return;
     }
     debugger.LogWarning(message);
 }
Ejemplo n.º 2
0
 private void LogWarning(object obj)
 {
     debugger.LogWarning(obj);
 }
 public void LogWarning(object obj)
 {
     Debugger.LogWarning(obj);
 }