/// <summary> /// Gets all the current log file names in Current /// </summary> /// <returns>a list of the log file names</returns> public static IEnumerable<string> GetCurrentLogNames() { var logger = new Logger(); return logger.GetCurrentLogNames(); }
/// <summary> /// Gets all the current log file names in Current /// </summary> /// <returns>a list of the log file names</returns> public static IEnumerable <string> GetCurrentLogNames() { Logger logger = new Logger(); return(logger.GetCurrentLogNames()); }
/// <summary> /// Gets all the current log file names in Current /// </summary> /// <returns>a list of the log file names</returns> public static IEnumerable<string> GetCurrentLogNames() { var logger = new Logger(WebConfigurationManager.AppSettings["LogPath"]); return logger.GetCurrentLogNames(); }
/// <summary> /// Gets all the current log file names in Current /// </summary> /// <returns>a list of the log file names</returns> public static IEnumerable <string> GetCurrentLogNames() { var logger = new Logger(WebConfigurationManager.AppSettings["LogPath"]); return(logger.GetCurrentLogNames()); }