Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 836 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 836 Bytes

Serilog.Sinks.Telegram

NuGet Version

A Serilog sink that writes events as messages to Telegram.

All you need is bot token and chat id. To manage bots go to Bot Father. After you got bot token add bot to contacts and start it (/start). To get your id navigate to https://api.telegram.org/botTOKEN/getUpdates

var log = new LoggerConfiguration()
                .MinimumLevel.Verbose()
                .WriteTo.Telegram("000000:AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", "000000")
                .CreateLogger();
log.Information("This is an information message!");

Example

Simple Message