Explorar o código

修改战斗dll中Log输出,链接到unity log

大爷 %!s(int64=2) %!d(string=hai) anos
pai
achega
cc516148ba
Modificáronse 1 ficheiros con 7 adicións e 4 borrados
  1. 7 4
      Common/CommonLang/Log/Loggin.cs

+ 7 - 4
Common/CommonLang/Log/Loggin.cs

@@ -2,6 +2,9 @@
 using System.Collections.Generic;
 using System.Text;
 using System.IO;
+#if ClientOnly
+using UnityEngine;
+#endif
 
 namespace CommonLang.Log
 {
@@ -232,19 +235,19 @@ namespace CommonLang.Log
 
             if(level == LoggerLevel.ERROR)
             {
-                YXJDebug.logError(msg);
+                UnityEngine.Debug.LogError(msg);
             }
             else if(level == LoggerLevel.WARNNING)
             {
-                YXJDebug.logWarning(msg);
+                UnityEngine.Debug.LogWarning(msg);
             }
             else if(level == LoggerLevel.INFO)
             {
-                YXJDebug.logInfo(msg);
+                UnityEngine.Debug.Log(msg);
             }
             else
             {
-                YXJDebug.logDebug(msg);
+                UnityEngine.Debug.Log(msg);
             }
         }
 #endif