示例#1
0
 public static ILog GetLogger(Type type)
 {
     return(WrapLogger(LoggerRepository.GetLogger(type.FullName)));
 }
示例#2
0
 public static ILog For(string loggerName)
 {
     return(LoggerRepository.GetLogger(loggerName));
 }
示例#3
0
 public static ILog GetLogger(string name)
 {
     return(WrapLogger(LoggerRepository.GetLogger(name)));
 }