Tag

sealed class Tag

Defined types of tags that can be provided to the KaliumLogger as a String text.

Inheritors

Types

Link copied to clipboard
data class Text(val text: String) : KaliumLogger.Tag

Simple String text tag.

Link copied to clipboard
data class UserClientText(val prefix: String, val data: () -> KaliumLogger.UserClientData) : KaliumLogger.Tag

User-related data tag. Contains String text prefix and UserClientData (userId and clientId). It will be added to the tag in the standard pattern: "taguserId|clientId", so it can be combined with a Tag.Text type by adding the tag text as a prefix in this one.

Functions

Link copied to clipboard
abstract fun tagString(): String