Exemplo n.º 1
0
        public static ILog Log <T>(this T thing)
        {
            var log = AppLogManager.GetLogger <T>();

            return(log);
        }
Exemplo n.º 2
0
 public static ILog GetLogger <T>()
 {
     return(_logManager.GetLogger(typeof(T)));
 }