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