示例#1
0
 public TelegramLoggerProvider(IOptionsMonitor <TelegramLoggerOptions> config, ITelegramMessageService telegramMessageService)
 {
     _config = config.CurrentValue;
     _telegramMessageService = telegramMessageService;
 }
示例#2
0
 public TelegramLogger(string name, TelegramLoggerOptions config, ITelegramMessageService telegramMessageService)
 {
     _name   = name;
     _config = config;
     _telegramMessageService = telegramMessageService;
 }