From 9fe9c0d765d7a566e4355ee9aa9608dc391aa2ea Mon Sep 17 00:00:00 2001 From: Thibaud Desodt Date: Mon, 5 Mar 2018 09:09:47 +0100 Subject: [PATCH] Fix remaining reference to RollingFile sink --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index df54699..9e4f19f 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ To avoid bringing down apps with runaway disk usage the file sink **limits file For the same reason, only **the most recent 31 files** are retained by default (i.e. one long month). To change or remove this limit, pass the `retainedFileCountLimit` parameter. ```csharp - .WriteTo.RollingFile("log.txt", rollingInterval: RollingInterval.Day, retainedFileCountLimit: null) + .WriteTo.File("log.txt", rollingInterval: RollingInterval.Day, retainedFileCountLimit: null) ``` ### Rolling policies