This commit is contained in:
Pavel Krymets 2018-10-19 11:36:53 -07:00 коммит произвёл GitHub
Родитель 0d2c9d7b35
Коммит 2c89b73595
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 4 добавлений и 8 удалений

Просмотреть файл

@ -11,11 +11,6 @@ namespace Microsoft.Extensions.Logging.AzureAppServices
/// </summary>
public class AzureBlobLoggerOptions: BatchingLoggerOptions
{
public AzureBlobLoggerOptions()
{
BatchSize = 32;
}
private string _blobName = "applicationLog.txt";
/// <summary>

Просмотреть файл

@ -7,8 +7,8 @@ namespace Microsoft.Extensions.Logging.AzureAppServices.Internal
{
public class BatchingLoggerOptions
{
private int? _batchSize = 32;
private int? _backgroundQueueSize;
private int? _batchSize;
private int? _backgroundQueueSize = 1000;
private TimeSpan _flushPeriod = TimeSpan.FromSeconds(1);
/// <summary>
@ -30,7 +30,7 @@ namespace Microsoft.Extensions.Logging.AzureAppServices.Internal
/// <summary>
/// Gets or sets the maximum size of the background log message queue or null for no limit.
/// After maximum queue size is reached log event sink would start blocking.
/// Defaults to <c>null</c>.
/// Defaults to <c>1000</c>.
/// </summary>
public int? BackgroundQueueSize
{
@ -48,6 +48,7 @@ namespace Microsoft.Extensions.Logging.AzureAppServices.Internal
/// <summary>
/// Gets or sets a maximum number of events to include in a single batch or null for no limit.
/// </summary>
/// Defaults to <c>null</c>.
public int? BatchSize
{
get { return _batchSize; }