From bcf00889595b36ced77108356457553e8a20e231 Mon Sep 17 00:00:00 2001 From: Alan Cohen <34688558+acohenOT@users.noreply.github.com> Date: Thu, 27 May 2021 15:01:52 -0400 Subject: [PATCH] Add using statement to readme example `LogEventLevel.Information` requires `using Serilog.Events;` --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index af1fd2e..fe23720 100644 --- a/README.md +++ b/README.md @@ -201,6 +201,7 @@ To use this technique, first replace the initial `CreateLogger()` call with `Cre ```csharp using Serilog; +using Serilog.Events; public class Program {