Exemple #1
0
        /// <summary>
        /// Send all king of <see cref="LogLevel"/> logs to single Teams webhook channel.
        /// </summary>
        /// <param name="loggerFactory"></param>
        /// <param name="configure">Setting Teams webhook channel url. No needs to set <see cref="LogLevel"/>.</param>
        /// <returns></returns>
        public static ILoggerFactory AddSingleChannelLogger(this ILoggerFactory loggerFactory, Action <ChannelLoggerConfiguration> configure)
        {
            if (configure == null)
            {
                throw new ArgumentNullException(nameof(configure));
            }

            var config = new ChannelLoggerConfiguration();

            configure(config);

            GetEnumValues <LogLevel>().ToList().ForEach(level =>
            {
                var levelConfig = new ChannelLoggerConfiguration()
                {
                    LogLevel = level,
                    Channel  = config.Channel
                };
                loggerFactory.AddProvider(new ChannelLoggerProvider(levelConfig));
            });

            return(loggerFactory);

            IEnumerable <T> GetEnumValues <T>() => Enum.GetValues(typeof(T)).Cast <T>();
        }
Exemple #2
0
        /// <summary>
        /// depends on <see cref="LogLevel"/> to send logs to specific Teams webhook channel.
        /// </summary>
        /// <param name="loggerFactory"></param>
        /// <param name="configure">Setting Teams webhook channel url and <see cref="LogLevel"/></param>
        /// <returns></returns>
        public static ILoggerFactory AddChannelLogger(this ILoggerFactory loggerFactory, Action <ChannelLoggerConfiguration> configure)
        {
            if (configure == null)
            {
                throw new ArgumentNullException(nameof(configure));
            }

            var config = new ChannelLoggerConfiguration();

            configure(config);

            loggerFactory.AddProvider(new ChannelLoggerProvider(config));

            return(loggerFactory);
        }
Exemple #3
0
 public ChannelLogger(string name, ChannelLoggerConfiguration config)
 {
     _name   = name;
     _config = config;
 }
 public ChannelLoggerProvider(ChannelLoggerConfiguration config)
 {
     _config  = config;
     _loggers = new ConcurrentDictionary <string, ChannelLogger>();
 }