예제 #1
0
        public static string MessageToStr(object message)
        {
#if SERVER
            return(MongoHelper.ToJson(message));
#else
            return(Dumper.DumpAsString(message));
#endif
        }
예제 #2
0
파일: Log.cs 프로젝트: Xumudada/ET-Modules
 public static void Msg(object msg)
 {
     Debug(Dumper.DumpAsString(msg));
 }
예제 #3
0
 public static void Msg(object msg)
 {
     UnityEngine.Debug.Log(Dumper.DumpAsString(msg));
 }