XrLog.Level


class XrLog.Level : Comparable


Describes the priority of a log message.

Summary

Public companion properties

XrLog.Level

Debug messages log noisy information related to the internals of the system.

XrLog.Level

Error logs are reserved for something unexpected that will lead to a crash or data loss.

XrLog.Level

Info messages log standard, useful information about the state of the system.

XrLog.Level

Verbose messages contain extra noisy information, often used for detailed tracing.

XrLog.Level

Warning logs are used when something unexpected may lead to a crash or fatal exception later on as a result of the unusual circumstances.

Public functions

open operator Int

Public companion properties

DEBUG

val DEBUGXrLog.Level

Debug messages log noisy information related to the internals of the system.

ERROR

val ERRORXrLog.Level

Error logs are reserved for something unexpected that will lead to a crash or data loss.

INFO

val INFOXrLog.Level

Info messages log standard, useful information about the state of the system.

VERBOSE

val VERBOSEXrLog.Level

Verbose messages contain extra noisy information, often used for detailed tracing.

WARN

val WARNXrLog.Level

Warning logs are used when something unexpected may lead to a crash or fatal exception later on as a result of the unusual circumstances.

Public functions

compareTo

Added in 1.0.0-alpha13
open operator fun compareTo(other: XrLog.Level): Int