Liking cljdoc? Tell your friends :D

csv2rdf.logging

Entry point for logging messages during the CSVW process. Components should call log-warning and log-error instead of writing log messages directly. The sink for log messages can be configured by setting logger.

Entry point for logging messages during the CSVW process. Components should call log-warning and log-error
instead of writing log messages directly. The sink for log messages can be configured by setting *logger*.
raw docstring

*logger*clj


capture-warningscljmacro

(capture-warnings & body)

Captures any warning messages logged while executing body. Logged warnings are returned under the :warnings key in the returned map. The result of body is returned under the :result key.

Captures any warning messages logged while executing body. Logged warnings are returned under
the :warnings key in the returned map. The result of body is returned under the :result key.
raw docstring

log-errorclj

(log-error msg)

Logs the given error to the current logger.

Logs the given error to the current logger.
raw docstring

log-warningclj

(log-warning msg)

Logs the given warning to the current logger.

Logs the given warning to the current logger.
raw docstring

Loggercljprotocol

errorclj

(error this msg)

warnclj

(warn this msg)

memory-loggerclj

(memory-logger)

suppress-loggingcljmacro

(suppress-logging & body)

Discards all log messages generated while executing body.

Discards all log messages generated while executing body.
raw docstring

with-loggercljmacro

(with-logger logger & body)

Executes body with the given log message sink.

Executes body with the given log message sink.
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close