We chose to use Timbre for logging because it is the only library that comes with clojure and clojurescript logging in one piece. Aside from that it offers to implement appenders easily and seems heavy used throughout the clojure community. You can use file logging and structured logging from built-in appenders.
As a library, Datahike should not force any logging implementation on the user so Timbre does offer a wide variety of options. Timbre can be configured via a simple clojure map, or you can use your preferred Java logging implementation.
We needed a central place to raise an error and log at the same time in a consistent way. Therefore, we chose
to use a macro in the tools
namespace named raise
to solve that problem. In case you want to contribute to
Datahike please use this macro to throw errors. Please use logging appropriately in case you want to log in
another level.
Please see Timbre on GitHub for details of the library. You can
use it via any of your preferred logging implementations on the JVM as well as in JS. Logging of an error
consists of the message as the first part and optionally of a map of details. These details mostly consist
of an :error
key that describes where to search for your error and some information regarding the input
that created the error like :value
, :binding
or :symbol
.
There is a bug in Clojure that prevents macros to pass
line numbers to downstream macros. Thanks to Timbre we can use the low-level log!
macro and pass it the
line number. This seems the only workaround at the time to pass line numbers between macros.
An example to configure logging for an application using Datahike:
(ns datahike-example-app.core
(:require [taoensso.timbre :as log]
[taoensso.timbre.appenders.3rd-party.rotor :as rotor]))
(log/merge-config! {:level :debug
:appenders {:rotating (rotor/rotor-appender
{:path "/var/log/datahike-server.log"
:max-size (* 512 1024)
:backlog 10})}})
(log/infof "My first log in Datahike")
Errors that are caught inside Datahike create an ExceptionInfo
for Clojure or an Error
for ClojureScript. It carries similar information like the
logging of these errors. An error consists of the message as the first part and optionally of a map of
details. These details mostly consist of an :error
key that describes where to search for your error
and some information regarding the input that created the error like :value
, :binding
or :symbol
.
Can you improve this documentation? These fine people already did:
Judith & Timo KramerEdit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close