Skip to content

Commit b242c3a

Browse files
authored
CI badge [Skip CI]
1 parent 550f473 commit b242c3a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Serilog.Extensions.Logging.File [![NuGet Pre Release](https://img.shields.io/nuget/vpre/Serilog.Extensions.Logging.File.svg)](https://nuget.org/packages/Serilog.Extensions.Logging.File) [![Join the chat at https://gitter.im/serilog/serilog](https://img.shields.io/gitter/room/serilog/serilog.svg)](https://gitter.im/serilog/serilog)
1+
# Serilog.Extensions.Logging.File [![NuGet Pre Release](https://img.shields.io/nuget/vpre/Serilog.Extensions.Logging.File.svg)](https://nuget.org/packages/Serilog.Extensions.Logging.File) [![Join the chat at https://gitter.im/serilog/serilog](https://img.shields.io/gitter/room/serilog/serilog.svg)](https://gitter.im/serilog/serilog) [![Build status](https://ci.appveyor.com/api/projects/status/vcmt0kn7x2wmjvl0?svg=true)](https://ci.appveyor.com/project/NicholasBlumhardt/serilog-extensions-logging-file)
22

33
This package makes it a one-liner - `loggerFactory.AddFile()` - to configure top-quality file logging for ASP.NET Core apps.
44

@@ -102,9 +102,9 @@ The provider supports the templated log messages used by _Microsoft.Extensions.L
102102
This means that although the text of two messages may be different, their **event id** fields will match, as shown by the two "view" logging statements below:
103103

104104
```
105-
2016-10-18T11:14:26.2544709+10:00 0HKVMUG8EMJO9 [INF] Executing ViewResult, running view at path "/Views/Home/About.cshtml". (9707eebe)
105+
2016-10-18T11:14:26.2544709+10:00 0HKVMUG8EMJO9 [INF] Running view at "/Views/Home/About.cshtml". (9707eebe)
106106
2016-10-18T11:14:11.0881912+10:00 0HKVMUG8EMJO9 [INF] Hello, world! (f83bcf75)
107-
2016-10-18T11:14:26.2544709+10:00 0HKVMUG8EMJO9 [INF] Executing ViewResult, running view at path "/Views/Home/Index.cshtml". (9707eebe)
107+
2016-10-18T11:14:26.2544709+10:00 0HKVMUG8EMJO9 [INF] Running view at "/Views/Home/Index.cshtml". (9707eebe)
108108
```
109109

110110
Each log message describing view rendering is tagged with `(9707eebe)`, while the "hello" log message is given `(f83bcf75)`. This makes it easy to search the log for messages describing the same kind of event.

0 commit comments

Comments
 (0)