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

            return(log);
        }
Beispiel #2
0
 public static ILog GetLogger <T>()
 {
     return(_logManager.GetLogger(typeof(T)));
 }