7 lines
No EOL
213 B
C#
7 lines
No EOL
213 B
C#
namespace Iceshrimp.Frontend.Core.InMemoryLogger;
|
|
|
|
internal class InMemoryLoggerConfiguration
|
|
{
|
|
public int BufferSize { get; set; } = 1000;
|
|
public LogLevel LogLevel { get; set; } = LogLevel.Information;
|
|
} |