LogLevel

Represents the different levels of logging that can be used.

Entries

Link copied to clipboard

Something routine and expected has occurred. This level will provide logs for the vast majority of operations and function calls.

Link copied to clipboard

Development information, messages that are useful when trying to debug library behavior, but superfluous to normal operation.

Link copied to clipboard

Informational messages. Operationally significant to the library but not out of the ordinary.

Link copied to clipboard

Anything that is not immediately an error, but could cause unexpected behavior in the future. For example, passing an invalid value to an option. Indicates that some action should be taken to prevent future errors.

Link copied to clipboard

A given operation has failed and cannot be automatically recovered. The error may threaten the continuity of operation.

Link copied to clipboard

No logging will be performed.

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
Link copied to clipboard
Link copied to clipboard

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.