LogLevel

A platform-independent log level, carrying its OTLP severity mapping.

Each level maps to the base of its OTLP SeverityNumber range (TRACE→1, DEBUG→5, INFO→9, WARN→13, ERROR→17) and a human-readable severity text. The capture core copies both onto each LogRecord so the buffer is OTLP-shaped from the moment of capture.

Levels are declared least-to-most severe; ordinal is therefore a valid severity comparison and is what CaptureConfig.minLevel filters against.

Entries

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Properties

Link copied to clipboard

Returns a representation of an immutable list of all enum entries, in the order they're declared.

Link copied to clipboard
expect val name: String
Link copied to clipboard
expect val ordinal: Int
Link copied to clipboard

OTLP SeverityNumber (1–24) for this level — the base of its range.

Link copied to clipboard

Human-readable severity text (e.g. "INFO", "WARN").

Functions

Link copied to clipboard
fun valueOf(value: String): LogLevel

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard

Returns an array containing the constants of this enum type, in the order they're declared.