Structured logging library for Kotlin, that aims to provide a developer-friendly API with minimal runtime overhead. Currently only supports the JVM platform, wrapping SLF4J.
v2+ of the library is a fork of
hermannm/devlog-kotlin
(licensed under MIT),
to make maintenance and distribution by Liflig easier.
Contents:
The Logger class is the entry point to liflig-logging's API. You can get a Logger by calling
getLogger(), which automatically gives the logger the name of its containing class (or file, if
defined at the top level). See Implementation below for how this works.
// File Example.kt
package com.example
import no.liflig.logging.getLogger
// Gets the name "com.example.Example"
private val log = getLogger()Logger provides methods for logging at various log levels (info, warn, error, debug and
trace). The methods take a lambda to construct the log, which is only called if the log level is
enabled (see Implementation for how this is done efficiently).
fun example() {
log.info { "Example message" }
}You can also add fields (structured key-value data) to your logs, by calling the field method in
the scope of a log lambda. It uses
kotlinx.serialization to serialize the value.
import kotlinx.serialization.Serializable
@Serializable
data class Event(val id: Long, val type: String)
fun example() {
val event = Event(id = 1000, type = "ORDER_UPDATED")
log.info {
field("event", event)
"Processing event"
}
}When outputting logs as JSON, the key/value given to field is added to the logged JSON object (see
below). This allows you to filter and query on the field in the log analysis tool of your choice, in
a more structured manner than if you were to just use string concatenation.
Sometimes, you may want to add fields to all logs in a scope. For example, you can add an event ID
to the logs when processing an event, so you can trace all the logs made in the context of that
event. To do this, you can use withLoggingContext:
import no.liflig.logging.field
import no.liflig.logging.withLoggingContext
fun processEvent(event: Event) {
withLoggingContext(field("eventId", event.id)) {
log.debug { "Started processing event" }
// ...
log.debug { "Finished processing event" }
}
}...giving the following output:
{ "message": "Started processing event", "eventId": "..." }
{ "message": "Finished processing event", "eventId": "..." }If an exception is thrown from inside withLoggingContext, the logging context is attached to the
exception. That way, we don't lose context when an exception escapes from the context scope - which
is when we need it most! When the exception is logged, the fields from the exception's logging
context are included in the output.
You can log an exception like this:
fun example() {
try {
callExternalService()
} catch (e: Exception) {
log.error(e) { "Request to external service failed" }
}
}If you want to add log fields to an exception when it's thrown, you can use
ExceptionWithLoggingContext:
import no.liflig.logging.ExceptionWithLoggingContext
import no.liflig.logging.field
fun callExternalService() {
val response = sendHttpRequest()
if (!response.status.successful) {
// When this exception is caught and logged, "statusCode" and "responseBody"
// will be included as structured fields in the log output.
// You can also extend this exception class for your own custom exceptions.
throw ExceptionWithLoggingContext(
"Received error response from external service",
field("statusCode", response.status.code),
field("responseBody", response.bodyString()),
)
}
}This is useful when you are throwing an exception from somewhere down in the stack, but do logging
further up the stack, and you have structured data at the throw site that you want to attach to the
exception log. In this case, one may typically resort to string concatenation, but
ExceptionWithLoggingContext allows you to have the benefits of structured logging for exceptions
as well.
withLoggingContext uses a thread-local
(SLF4J's MDC) to provide log fields to the scope, so it
won't work with Kotlin coroutines and suspend functions. If you use coroutines, you can solve this
with
MDCContext from
kotlinx-coroutines-slf4j.
Like SLF4J, liflig-logging only provides a logging API, and you have to add a logging
implementation to actually output logs. Any SLF4J logger implementation will work, but the
library is specially optimized for Logback.
To set up liflig-logging with
Logback and
logstash-logback-encoder
for JSON output, add the following dependencies:
- Maven: We recommend adding
liflig-loggingto thedependencyManagementsection, so that the same version is used across Liflig libraries. It's good practice to pair this with the Maven Enforcer Plugin, with the<dependencyConvergence/>and<requireUpperBoundDeps/>rules.<dependencyManagement> <dependency> <groupId>no.liflig</groupId> <artifactId>liflig-logging</artifactId> <version>${liflig-logging.version}</version> </dependency> </dependencyManagement> <dependencies> <!-- Logger API --> <dependency> <groupId>no.liflig</groupId> <artifactId>liflig-logging</artifactId> </dependency> <!-- Logger implementation --> <dependency> <groupId>ch.qos.logback</groupId> <artifactId>logback-classic</artifactId> <version>${logback.version}</version> <scope>runtime</scope> </dependency> <!-- JSON encoding of logs --> <dependency> <groupId>net.logstash.logback</groupId> <artifactId>logstash-logback-encoder</artifactId> <version>${logstash-logback-encoder.version}</version> <scope>runtime</scope> </dependency> </dependencies>
Then, configure Logback with a logback.xml file under src/main/resources:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
<encoder class="net.logstash.logback.encoder.LogstashEncoder">
<!-- Writes object values from logging context as actual JSON (not escaped) -->
<mdcEntryWriter class="no.liflig.logging.output.logback.JsonContextFieldWriter"/>
</encoder>
</appender>
<root level="INFO">
<appender-ref ref="STDOUT"/>
</root>
</configuration>For more configuration options, see:
- All the methods on
Loggertake a lambda to build the log, which is only called if the log level is enabled - so you only pay for message string concatenation and log field serialization if it's actually logged. Logger's methods are alsoinline, so we avoid the cost of allocating a function object for the lambda parameter.- Elsewhere in the library, we use inline value classes when wrapping SLF4J/Logback APIs, to get as close as possible to a zero-cost abstraction.
getLogger() calls MethodHandles.lookup().lookupClass(), which returns the calling class. Since
getLogger is inline, that will actually return the class that called getLogger, so we can use it
to get the name of the caller. When called at file scope, the calling class will be the synthetic
Kt class that Kotlin generates for the file, so we can use the file name in that case.
This is the pattern that the SLF4J docs recommends for getting loggers for a class in a generic manner.
The inspiration for this library mostly came from some inconveniencies and limitations that we've
experienced with the kotlin-logging library (it's a
great library, these are just subjective opinions!). Here are some of the things we wanted to
improve with this library:
- Structured logging
- In
kotlin-logging, going from a log without structured log fields to a log with them requires you to switch your logger method (info->atInfo), use a different syntax (message =instead of returning a string), and construct a map for the fields. - Having to switch syntax becomes a barrier for developers to do structured logging. In our experience, the key to making structured logging work in practice is to reduce such barriers.
- So in
liflig-logging, we wanted to make this easier: you use the same logger methods whether you are adding fields or not, and adding structured data to an existing log is as simple as just callingfieldin the scope of the log lambda.
- In
- Using
kotlinx.serializationfor log field serializationkotlin-loggingalso wraps SLF4J in the JVM implementation. It passes structured log fields asMap<String, Any?>, and leaves it to the logger backend to serialize them. Since most SLF4J logger implementations are Java-based, they typically use Jackson to serialize these fields (if they support structured logging at all).- But in Kotlin, we often use
kotlinx.serializationinstead of Jackson. There can be subtle differences between how Jackson andkotlinxserialize objects, so we would prefer to usekotlinxfor our log fields, so that they serialize in the same way as in the rest of our application. - In
liflig-logging, we solve this by serializing log fields before sending them to the logger backend, which allows us to control the serialization process withkotlinx.serialization. - Controlling the serialization process also lets us handle failures better. One of the issues
I've experienced with Jackson serialization of log fields, is that
logstash-logback-encoderwould drop an entire log line in some cases when one of the custom fields on that log failed to serialize.liflig-loggingnever drops logs on serialization failures, instead defaulting totoString().
- Inline logger methods
- One of the classic challenges for a logging library is how to handle calls to a logger method when the log level is disabled. We want this to have as little overhead as possible, so that we don't pay a runtime cost for a log that won't actually produce any output.
- In Kotlin, we have the opportunity to create such zero-cost abstractions, using
inlinefunctions with lambda parameters. This lets us implement logger methods that compile down to a simpleifstatement to check if the log level is enabled, and that do no work if the level is disabled. Great! - However,
kotlin-loggingdoes not use inline logger methods. This is partly because of how the library is structured:KLoggeris an interface, with different implementations for various platforms - and interfaces can't have inline methods. So the methods that take lambdas won't be inlined, which means that they may allocate function objects, which are not zero-cost. Thiskotlin-loggingissue discusses some of the performance implications. liflig-loggingsolves this by dividing up the problem: we make ourLoggera concrete class, which wraps SLF4J's logger interface.Loggerprovides the public API, and since it's a single concrete class, we can make its methodsinline. We also make it avalue class, so that it compiles down to just the underlying SLF4J logger at runtime. This makes the abstraction as close to zero-cost as possible.- One notable drawback of inline methods is that they don't work well with line numbers (i.e.,
getting file location information inside an inlined lambda will show an incorrect line number).
We deem this a worthy tradeoff for performance, because the class/file name + the log message is
typically enough to find the source of a log. Also,
logstash-logback-encoderexplicitly discourages enabling file locations, due to the runtime cost. Still, this is something to be aware of if you want line numbers included in your logs. This limitation is documented on all the methods onLogger.
- Supporting arbitrary types for logging context values
- SLF4J's
MDChas a limitation: values must beString. And thewithLoggingContextfunction fromkotlin-logging, which usesMDC, inherits this limitation. - But when doing structured logging, it can be useful to attach more than just strings in the
logging context - for example, attaching the JSON of an event in the scope that it's being
processed. If you pass serialized JSON to
MDC, the resulting log output will include the JSON as an escaped string. This defeats the purpose, as an escaped string will not be parsed automatically by log analysis platforms - what we want is to include actual, unescaped JSON in the logging context, so that we can filter and query on its fields. liflig-loggingsolves this limitation by instead taking aLogFieldtype, which can have an arbitrary serializable value, as the parameter to ourwithLoggingContextfunction. We then provideJsonContextFieldWriterfor interoperability withMDCwhen using Logback +logstash-logback-encoder.
- SLF4J's
- We use the Kotlin Binary Compatibility Validator to avoid accidental breaking changes
- This plugin generates an
api/liflig-logging.apifile that contains all the public APIs of the library. When making changes to the library, any changes to the library's public API will be checked against this file (in thekotlin-bcv:checkMaven task), to detect possible breaking changes - When adding new APIs (which should not be a breaking change), you must update this
.apifile by runningmvn clean compile kotlin-bcv:dump
v2 of the library is a fork of
hermannm/devlog-kotlin, to make maintenance and
distribution by Liflig easier. devlog-kotlin is
licensed under MIT.
Credits to the kotlin-logging library by Ohad Shai
(licensed under
Apache 2.0),
which was a great inspiration for this library.
Also credits to kosiakk for
this kotlin-logging issue, which inspired the
implementation using inline methods for minimal overhead.
{ "message": "Processing event", "event": { "id": 1000, "type": "ORDER_UPDATED" }, // ...timestamp etc. }