예제 #1
0
파일: AppLogManager.cs 프로젝트: hndc9x/FA
        public static ILog Log <T>(this T thing)
        {
            var log = AppLogManager.GetLogger <T>();

            return(log);
        }
예제 #2
0
파일: AppLogManager.cs 프로젝트: hndc9x/FA
 public static ILog GetLogger <T>()
 {
     return(_logManager.GetLogger(typeof(T)));
 }