5 references to FlushPeriod
Microsoft.Extensions.Logging.AzureAppServices (5)
BatchingLoggerOptions.cs (1)
27
throw new ArgumentOutOfRangeException(nameof(value), $"{nameof(
FlushPeriod
)} must be positive.");
BatchingLoggerProvider.cs (4)
46
if (loggerOptions.
FlushPeriod
<= TimeSpan.Zero)
49
throw new ArgumentOutOfRangeException(nameof(loggerOptions.
FlushPeriod
), $"{nameof(loggerOptions.
FlushPeriod
)} must be longer than zero.");
53
_interval = loggerOptions.
FlushPeriod
;