Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -670,7 +670,7 @@ definition:
----
(ns tutorial.print
(:require [duct.logger :as log]
[integrant.core :as ig))
[integrant.core :as ig]))

(defmethod ig/init-key ::hello [_key {:keys [level logger name]}]
(log/log logger level ::hello {:name name}))
Expand All @@ -691,7 +691,7 @@ the `init-key` method (or function) opened. The return value from
----
(ns tutorial.print
(:require [duct.logger :as log]
[integrant.core :as ig))
[integrant.core :as ig]))

(defmethod ig/init-key ::hello [_key {:keys [level logger name] :as opts}]
(log/log logger level ::hello {:name name})
Expand Down