Logging

expect class Logging

Describes an expected class which is able to produce Logger instances as a factory.

actual class Logging

Describes an expected class which is able to produce Logger instances as a factory.

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
expect fun logger(): Logger

Acquire a root Logger which is unnamed, or uses an empty string value ("") for the logger name.

expect fun logger(name: String): Logger

Acquire a Logger for the given logger name, which can be any identifying string; in JVM circumstances, the full class name of the subject which is sending the logs is usually used.

actual fun logger(): Logger

Acquire a root Logger which is unnamed, or uses an empty string value ("") for the logger name.

actual fun logger(name: String): Logger

Acquire a Logger for the given logger name, which can be any identifying string; in JVM circumstances, the full class name of the subject which is sending the logs is usually used.