Duplicate Suppression
Suppress duplicate log entries within a specified time window to avoid log flooding.
First of all you should configure the logger to suppress duplicate log entries within a 5-second window.
Log.Initialize(new LogSettings
{
DuplicateSuppressionWindow = TimeSpan.FromSeconds(5)
});
Example usage:
Log.Info("This log will be suppressed Start.");
Log.Info("This log will be suppressed.");
Log.Info("This log will be suppressed.");
Log.Info("This log will be suppressed.");
Log.Info("This log will be suppressed.");
Log.Info("This log will be suppressed.");
Log.Info("This log will be suppressed.");
Log.Info("This log will be suppressed.");
Log.Info("This log will be suppressed.");
Log.Info("This log will be suppressed End.");
Output:
2024-10-14 08:15:19 [Info] This log will be suppressed Start.
Method: Main, File: ...\Program.cs, Line: 32
2024-10-14 08:15:19 [Info] This log will be suppressed.
Method: Main, File: ...\Program.cs, Line: 33
2024-10-14 08:15:20 [Info] This log will be suppressed End.
Method: Main, File: ...\Program.cs, Line: 41