recide.sanex.logging

debug

macro

(debug message & more)(debug throwable message & more)

Wrapper of clojure.tools.logging/debug. Debug level logging using print-style args. Sanitizes exceptions.

debugf

macro

(debugf fmt & fmt-args)(debugf throwable fmt & fmt-args)

Wrapper of clojure.tools.logging/debugf. Debug level logging using format. Sanitizes exceptions.

enabled?

macro

(enabled? & whatever)

No-op wrapper of clojure.tools.logging/enabled?

error

macro

(error message & more)(error throwable message & more)

Wrapper of clojure.tools.logging/error. Error level logging using print-style args. Sanitizes exceptions.

errorf

macro

(errorf fmt & fmt-args)(errorf throwable fmt & fmt-args)

Wrapper of clojure.tools.logging/errorf. Error level logging using format. Sanitizes exceptions.

fatal

macro

(fatal message & more)(fatal throwable message & more)

Wrapper of clojure.tools.logging/fatal. Fatal level logging using print-style args. Sanitizes exceptions.

fatalf

macro

(fatalf fmt & fmt-args)(fatalf throwable fmt & fmt-args)

Wrapper of clojure.tools.logging/fatalf. Fatal level logging using format. Sanitizes exceptions.

info

macro

(info message & more)(info throwable message & more)

Wrapper of clojure.tools.logging/info. Info level logging using print-style args. Sanitizes exceptions.

infof

macro

(infof fmt & fmt-args)(infof throwable fmt & fmt-args)

Wrapper of clojure.tools.logging/infof. Info level logging using format. Sanitizes exceptions.

log

macro

(log level message)(log level throwable message)(log logger-ns level throwable message)(log logger-factory logger-ns level throwable message)

Evaluates and logs a message only if the specified level is enabled. Wrapper of clojure.tools.logging/log that sanitizes exceptions.

log-stream

(log-stream & whatever)

wraps recide.sanex.logging/log-stream

logf

macro

(logf level fmt & fmt-args)(logf level throwable fmt & fmt-args)

Wrapper of clojure.tools.logging/logf that sanitizes exceptions.

logp

macro

(logp level message & more)(logp level throwable message & more)

Wrapper of clojure.tools.logging/logp that sanitizes exceptions.

spy

macro

(spy & whatever)

recide.sanex.logging/spy has problems. Don’t use this. If you do, expect failure.

spyf

macro

(spyf & whatever)

Spyf has problems. Don’t use this. If you do,

trace

macro

(trace message & more)(trace throwable message & more)

Wrapper of clojure.tools.logging/trace. Trace level logging using print-style args. Sanitizes exceptions.

tracef

macro

(tracef fmt & fmt-args)(tracef throwable fmt & fmt-args)

Wrapper of clojure.tools.logging/tracef. Trace level logging using format. Sanitizes exceptions.

warn

macro

(warn message & more)(warn throwable message & more)

Wrapper of clojure.tools.logging/warn. Warn level logging using print-style args. Sanitizes exceptions.

warnf

macro

(warnf fmt & fmt-args)(warnf throwable fmt & fmt-args)

Wrapper of clojure.tools.logging/warnf. Warn level logging using format. Sanitizes exceptions.