| 12345678910111213141516171819202122232425262728 |
- namespace ET
- {
- public static class LogExt
- {
- public static ILog ILog { get; set; }
- public static void Log(string msg)
- {
- ILog.Info(msg);
- }
- public static void OrderLog(string msg)
- {
- ILog.Warning(msg);
- }
- public static void CoreLog(string msg)
- {
- ILog.Debug(msg);
- }
- //充值到账的订单日志
- public static void PayToAccountLogInfo(string msg)
- {
- ILog.Trace(msg);
- }
- }
- }
|