Skip to content

Commit

Permalink
Merge pull request #9 from serilog/dev
Browse files Browse the repository at this point in the history
1.0.1 Release
  • Loading branch information
nblumhardt authored Mar 31, 2017
2 parents 305d503 + 65e50e1 commit 6539943
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public static ILoggerFactory AddFile(this ILoggerFactory loggerFactory, IConfigu
}

var levelOverrides = new Dictionary<string, LogLevel>();
foreach (var overr in levelSection.GetChildren().Where(cfg => cfg.Value != "Default"))
foreach (var overr in levelSection.GetChildren().Where(cfg => cfg.Key != "Default"))
{
LogLevel value;
if (!Enum.TryParse(overr.Value, out value))
Expand Down
2 changes: 1 addition & 1 deletion src/Serilog.Extensions.Logging.File/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.0-*",
"version": "1.0.1-*",

"description": "Add file logging to ASP.NET Core apps with one line of code.",
"authors": [ "Serilog Contributors" ],
Expand Down

0 comments on commit 6539943

Please sign in to comment.