-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #55 from onerain88/gitignore
chore: Log code
- Loading branch information
Showing
3 changed files
with
71 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
namespace LeanCloud { | ||
/// <summary> | ||
/// 日志级别 | ||
/// </summary> | ||
public enum LCLogLevel { | ||
/// <summary> | ||
/// 调试级别 | ||
/// </summary> | ||
Debug, | ||
/// <summary> | ||
/// 警告级别 | ||
/// </summary> | ||
Warn, | ||
/// <summary> | ||
/// 错误级别 | ||
/// </summary> | ||
Error, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
using System; | ||
using System.Text; | ||
|
||
namespace LeanCloud { | ||
/// <summary> | ||
/// 日志类 | ||
/// </summary> | ||
public static class LCLogger { | ||
/// <summary> | ||
/// 日志回调接口,方便开发者调试 | ||
/// </summary> | ||
/// <value>The log delegate.</value> | ||
public static Action<LCLogLevel, string> LogDelegate { | ||
get; set; | ||
} | ||
|
||
public static void Debug(string log) { | ||
LogDelegate?.Invoke(LCLogLevel.Debug, log); | ||
} | ||
|
||
public static void Debug(string format, params object[] args) { | ||
LogDelegate?.Invoke(LCLogLevel.Debug, string.Format(format, args)); | ||
} | ||
|
||
public static void Warn(string log) { | ||
LogDelegate?.Invoke(LCLogLevel.Warn, log); | ||
} | ||
|
||
public static void Warn(string format, params object[] args) { | ||
LogDelegate?.Invoke(LCLogLevel.Warn, string.Format(format, args)); | ||
} | ||
|
||
public static void Error(string log) { | ||
LogDelegate?.Invoke(LCLogLevel.Error, log); | ||
} | ||
|
||
public static void Error(string format, params object[] args) { | ||
LogDelegate?.Invoke(LCLogLevel.Error, string.Format(format, args)); | ||
} | ||
|
||
public static void Error(Exception e) { | ||
StringBuilder sb = new StringBuilder(); | ||
sb.Append(e.GetType()); | ||
sb.Append("\n"); | ||
sb.Append(e.Message); | ||
sb.Append("\n"); | ||
sb.Append(e.StackTrace); | ||
Error(sb.ToString()); | ||
} | ||
} | ||
} |