Package-level declarations

Types

Link copied to clipboard
open class Console : Logger

Console class implementing the Logger interface. This class provides methods to log messages to the console.

Link copied to clipboard
interface Logger

Logger interface that provides methods for logging different levels of information.

Link copied to clipboard
open class None : Logger

The None class is an implementation of the Logger interface that performs no operations. This can be used as a default or placeholder logger.

Link copied to clipboard
open class Standard : Logger

Standard class implementing the Logger interface. This class provides methods to log messages using Android's Log utility.

Properties

Link copied to clipboard

A lazy-initialized Logger instance for console logging.

Link copied to clipboard

A lazy-initialized Logger instance that performs no operations.

Link copied to clipboard

A lazy-initialized Logger instance for standard logging.

Link copied to clipboard

A lazy-initialized Logger instance that only logs warnings and errors.