Home

Awesome

Duct Simple Logger Build Status

A simple logging library for the Duct framework that's fully compatible with Integrant.

Installation

Add the following dependency to your deps.edn file:

org.duct-framework/logger.simple {:mvn/version "0.4.3"}

Or to your Leiningen project file:

[org.duct-framework/logger.simple "0.4.3"]

Usage

You can use the :duct.logger/simple logger to output logging events. This key derives from :duct/logger.

{:duct.logger/simple {:appenders [{:type :stdout}]}
 :example/hello-world {:logger #ig/ref :duct/logger}}

The logger uses the protocol from the duct.logger library:

(ns example
  (:require [duct.logger :as logger]
            [integrant.core :as ig]))

(defmethod ig/init-key ::hello-world [_ {:keys [logger]}]
  (logger/info logger ::hello-world))

The logger should have one or more appenders added to the :appenders key in the option map. These appenders are responsible for sending the logs to some output, and there's two types available:

Appenders are specified as maps, and the :type key determines the type.

STDOUT logger

The STDOUT logger prints to STDOUT and supports the following options:

File logger

The :file appender appends logs to a file, and takes the following options:

License

Copyright © 2024 James Reeves

Distributed under the Eclipse Public License either version 1.0 or (at your option) any later version.