IBufferedLogger
Represents the ability of a logging provider to support buffered logging.
using System.Collections.Generic;
using System.Runtime.CompilerServices;
namespace Microsoft.Extensions.Logging.Abstractions
{
[NullableContext(1)]
public interface IBufferedLogger
{
void LogRecords(IEnumerable<BufferedLogRecord> records);
}
}