public ILog GetLogger(string typeName)
 {
     return(new LogAdapter(LogManager.GetLogger(typeName)));
 }
 public ILog GetLogger(Type type)
 {
     return(new LogAdapter(LogManager.GetLogger(type)));
 }