Example #1
0
        /// <summary>
        /// Returns all Logged Errors by given Log Category Type.  Not available if using the TextFile logger.
        /// </summary>
        /// <param name="logCategory"></param>
        /// <returns>IReadOnlyCollection</returns>
        public static IReadOnlyCollection <Error> Read(LoggingTypeModel.LogCategory logCategory)
        {
            var log = LogReaderV2.ReadSpecificCategory(logCategory);

            return(log);
        }