コード例 #1
0
ファイル: LogTest.cs プロジェクト: SixGodZhang/ATFramework
 /// <summary>
 /// 所有种类Log测试
 /// </summary>
 public static void AllLogTest()
 {
     ATLog.Debug("this is debug log");
     ATLog.Info("this is Info log");
     ATLog.Warn("this is warn log");
     ATLog.Error("this is error log");
 }
コード例 #2
0
ファイル: LogTest.cs プロジェクト: SixGodZhang/ATFramework
 /// <summary>
 /// 错误Log测试
 /// </summary>
 public static void ErrorLogTest()
 {
     ATLog.Error("this is error log");
 }
コード例 #3
0
ファイル: LogTest.cs プロジェクト: SixGodZhang/ATFramework
 /// <summary>
 /// 警告Log测试
 /// </summary>
 public static void WarnLogTest()
 {
     ATLog.Warn("this is warn log");
 }
コード例 #4
0
ファイル: LogTest.cs プロジェクト: SixGodZhang/ATFramework
 /// <summary>
 /// 重要Log测试
 /// </summary>
 public static void InfoLogTest()
 {
     ATLog.Info("this is Info log");
 }
コード例 #5
0
ファイル: LogTest.cs プロジェクト: SixGodZhang/ATFramework
 /// <summary>
 /// 调试Log测试
 /// </summary>
 public static void DebugLogTest()
 {
     ATLog.Debug("this is debug log");
 }