Skip to content

Commit

Permalink
fix: Reinstate max number of log files. (#1930)
Browse files Browse the repository at this point in the history
  • Loading branch information
chynesNR committed Sep 21, 2023
1 parent c6c921a commit 41eef7b
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -253,7 +253,7 @@ private static LoggerConfiguration ConfigureRollingLogSink(this LoggerConfigurat
fileSizeLimitBytes: 50 * 1024 * 1024,
encoding: Encoding.UTF8,
rollOnFileSizeLimit: true,
retainedFileCountLimit: null, // unlimited number of files
retainedFileCountLimit: 4, // TODO: Will make configurable
shared: true,
buffered: false
);
Expand Down

0 comments on commit 41eef7b

Please sign in to comment.