Package-level declarations

Types

Link copied to clipboard

Adapter Logger implementation integrating android.util.Log with Ktorm.

Link copied to clipboard
class CommonsLoggerAdapter(loggerName: String) : Logger

Adapter Logger implementation integrating Apache Commons Logging with Ktorm.

Link copied to clipboard
class ConsoleLogger(val threshold: LogLevel) : Logger

Simple Logger implementation printing logs to the console. While messages at WARN or ERROR levels are printed to System.err, others are printed to System.out.

Link copied to clipboard
class JdkLoggerAdapter(loggerName: String) : Logger

Adapter Logger implementation integrating java.util.logging with Ktorm.

Link copied to clipboard
interface Logger

A simple logging interface abstracting third-party logging frameworks.

Link copied to clipboard

Enum class defining logging levels in a certain order. While TRACE is the least serious and ERROR is the most serials.

Link copied to clipboard

Logger implementation that performs no operations.

Link copied to clipboard
class Slf4jLoggerAdapter(loggerName: String) : Logger

Adapter Logger implementation integrating Slf4j with Ktorm.

Functions

Link copied to clipboard

Auto detect a logger implementation.