StaticConfig

data class StaticConfig(val minSeverity: Severity = DEFAULT_MIN_SEVERITY, val logWriterList: List<LogWriter> = listOf(CommonWriter())) : LoggerConfig

Immutable LoggerConfig. Access is thread safe because state is immutable. Use this is you are worried about logging performance.

Constructors

Link copied to clipboard
constructor(minSeverity: Severity = DEFAULT_MIN_SEVERITY, logWriterList: List<LogWriter> = listOf(CommonWriter()))

Properties

Link copied to clipboard
open override val logWriterList: List<LogWriter>
Link copied to clipboard
open override val minSeverity: Severity