Public Variables and Functions
dynamic varOverrides the default rules for choosing between logging directly or via an
agent. Defaults to nil. See log* for details.
Source
dynamic varAn instance satisfying the clojure.tools.logging.impl/LoggerFactory protocol,
which allows uniform access to an underlying logging implementation.
The default value will be obtained by invoking a no-arg function named by the
"clojure.tools.logging.factory" system property, or if unset, by invoking
clojure.tools.logging.impl/find-factory.
After loading, this var can be programmatically changed to a different
LoggerFactory implementation via binding or alter-var-root.
See the various factory functions in clojure.tools.logger.impl.
Source
dynamic varThe default agent used for performing logging when direct logging is
disabled. See log* for details.
Source
dynamic varThe set of levels that will require using an agent when logging from within a
running transaction. Defaults to #{:info :warn}. See log* for details.
Source
macroUsage: (debug message & more)
(debug throwable message & more)
Debug level logging using print-style args.
Use the 'logging.readable' namespace to avoid wrapping args in pr-str.
Source
macroUsage: (debugf fmt & fmt-args)
(debugf throwable fmt & fmt-args)
Debug level logging using format.
Use the 'logging.readable' namespace to avoid wrapping args in pr-str.
Source
macroUsage: (enabled? level)
(enabled? level logger-ns)
Returns true if the specific logging level is enabled. Use of this macro
should only be necessary if one needs to execute alternate code paths beyond
whether the log should be written to.
Source
macroUsage: (error message & more)
(error throwable message & more)
Error level logging using print-style args.
Use the 'logging.readable' namespace to avoid wrapping args in pr-str.
Source
macroUsage: (errorf fmt & fmt-args)
(errorf throwable fmt & fmt-args)
Error level logging using format.
Use the 'logging.readable' namespace to avoid wrapping args in pr-str.
Source
macroUsage: (fatal message & more)
(fatal throwable message & more)
Fatal level logging using print-style args.
Use the 'logging.readable' namespace to avoid wrapping args in pr-str.
Source
macroUsage: (fatalf fmt & fmt-args)
(fatalf throwable fmt & fmt-args)
Fatal level logging using format.
Use the 'logging.readable' namespace to avoid wrapping args in pr-str.
Source
macroUsage: (info message & more)
(info throwable message & more)
Info level logging using print-style args.
Use the 'logging.readable' namespace to avoid wrapping args in pr-str.
Source
macroUsage: (infof fmt & fmt-args)
(infof throwable fmt & fmt-args)
Info level logging using format.
Use the 'logging.readable' namespace to avoid wrapping args in pr-str.
Source
macroUsage: (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. See log*
for more details.
Source
functionUsage: (log* logger level throwable message)
Attempts to log a message, either directly or via an agent; does not check if
the level is enabled.
For performance reasons, an agent will only be used when invoked within a
running transaction, and only for logging levels specified by
*tx-agent-levels*. This allows those entries to only be written once the
transaction commits, and are discarded if it is retried or aborted. As
corollary, other levels (e.g., :debug, :error) will be written even from
failed transactions though at the cost of repeat messages during retries.
One can override the above by setting *force* to :direct or :agent; all
subsequent writes will be direct or via an agent, respectively.
Source
functionUsage: (log-capture! logger-ns)
(log-capture! logger-ns out-level err-level)
Captures System.out and System.err, piping all writes of those streams to
the log. If unspecified, levels default to :info and :error, respectively.
The specified logger-ns value will be used to namespace all log entries.
Note: use with-logs to redirect output of *out* or *err*.
Warning: if the logging implementation is configured to output to System.out
(as is the default with java.util.logging) then using this function will
result in StackOverflowException when writing to the log.
Source
functionUsage: (log-stream level logger-ns)
Creates a PrintStream that will output to the log at the specified level.
Source
functionUsage: (log-uncapture!)
Restores System.out and System.err to their original values.
Source
macroUsage: (logf level fmt & fmt-args)
(logf level throwable fmt & fmt-args)
Logs a message using a format string and args. Can optionally take a
throwable as its second arg. See level-specific macros, e.g., debugf.
Use the 'logging.readable' namespace to avoid wrapping args in pr-str.
Source
macroUsage: (logp level message & more)
(logp level throwable message & more)
Logs a message using print style args. Can optionally take a throwable as its
second arg. See level-specific macros, e.g., debug.
Use the 'logging.readable' namespace to avoid wrapping args in pr-str.
Source
macroUsage: (spy expr)
(spy level expr)
Evaluates expr and may write the form and its result to the log. Returns the
result of expr. Defaults to :debug log level.
Source
macroUsage: (spyf fmt expr)
(spyf level fmt expr)
Evaluates expr and may write (format fmt result) to the log. Returns the
result of expr. Defaults to :debug log level.
Use the 'logging.readable' namespace to avoid wrapping args in pr-str.
Source
macroUsage: (trace message & more)
(trace throwable message & more)
Trace level logging using print-style args.
Use the 'logging.readable' namespace to avoid wrapping args in pr-str.
Source
macroUsage: (tracef fmt & fmt-args)
(tracef throwable fmt & fmt-args)
Trace level logging using format.
Use the 'logging.readable' namespace to avoid wrapping args in pr-str.
Source
macroUsage: (warn message & more)
(warn throwable message & more)
Warn level logging using print-style args.
Use the 'logging.readable' namespace to avoid wrapping args in pr-str.
Source
macroUsage: (warnf fmt & fmt-args)
(warnf throwable fmt & fmt-args)
Warn level logging using format.
Use the 'logging.readable' namespace to avoid wrapping args in pr-str.
Source
macroUsage: (with-logs logger-ns & body)
(with-logs [logger-ns out-level err-level] & body)
Evaluates exprs in a context in which *out* and *err* write to the log. The
specified logger-ns value will be used to namespace all log entries.
By default *out* and *err* write to :info and :error, respectively.
SourcePublic Variables and Functions
functionUsage: (cl-factory)
Returns a Commons Logging-based implementation of the LoggerFactory protocol, or
nil if not available.
Source
functionUsage: (class-found? name)
Returns true if the Class associated with the given classname can be found
using the context ClassLoader for the current thread.
Source
varA Logger that is not enabled and does nothing on write.
Source
varA LoggerFactory that always provides the disabled-logger.
Source
functionUsage: (find-factory)
Returns the first non-nil value from slf4j-factory, cl-factory,
log4j2-factory, log4j-factory, and jul-factory.
Source
functionUsage: (jul-factory)
Returns a java.util.logging-based implementation of the LoggerFactory protocol,
or nil if not available.
Source
functionUsage: (log4j-factory)
Returns a Log4j-based implementation of the LoggerFactory protocol, or nil if
not available.
Source
functionUsage: (log4j2-factory)
Returns a Log4j2-based implementation of the LoggerFactory protocol, or nil if
not available.
Source
functionUsage: (slf4j-factory)
Returns a SLF4J-based implementation of the LoggerFactory protocol, or nil if
not available.
SourcePublic Variables and Functions
macroUsage: (debug message & more)
(debug throwable message & more)
Debug level logging using print-style args. See logp for details.
Source
macroUsage: (debugf fmt & fmt-args)
(debugf throwable fmt & fmt-args)
Debug level logging using format. See logf for details.
Source
macroUsage: (error message & more)
(error throwable message & more)
Error level logging using print-style args. See logp for details.
Source
macroUsage: (errorf fmt & fmt-args)
(errorf throwable fmt & fmt-args)
Error level logging using format. See logf for details.
Source
macroUsage: (fatal message & more)
(fatal throwable message & more)
Fatal level logging using print-style args. See logp for details.
Source
macroUsage: (fatalf fmt & fmt-args)
(fatalf throwable fmt & fmt-args)
Fatal level logging using format. See logf for details.
Source
macroUsage: (info message & more)
(info throwable message & more)
Info level logging using print-style args. See logp for details.
Source
macroUsage: (infof fmt & fmt-args)
(infof throwable fmt & fmt-args)
Info level logging using format. See logf for details.
Source
macroUsage: (logf level fmt & fmt-args)
(logf level throwable fmt & fmt-args)
Logs a message using a format string and args, where all format args will be
printed readably, as if wrapped in pr-str. Can optionally take a throwable as
its second arg. See level-specific macros, e.g., debugf.
Source
macroUsage: (logp level message & more)
(logp level throwable message & more)
Logs a message using print style args, where message args that are not
literal strings will be printed readably, as if wrapped in pr-str. Can
optionally take a throwable as its second arg. See level-specific macros,
e.g., debug.
Source
macroUsage: (spyf fmt expr)
(spyf level fmt expr)
Evaluates expr and may write (logf level fmt result) to the log. Returns the
result of expr. Defaults to :debug log level.
Source
macroUsage: (trace message & more)
(trace throwable message & more)
Trace level logging using print-style args. See logp for details.
Source
macroUsage: (tracef fmt & fmt-args)
(tracef throwable fmt & fmt-args)
Trace level logging using format. See logf for details.
Source
macroUsage: (warn message & more)
(warn throwable message & more)
Warn level logging using print-style args. See logp for details.
Source
macroUsage: (warnf fmt & fmt-args)
(warnf throwable fmt & fmt-args)
Warn level logging using format. See logf for details.
SourcePublic Variables and Functions
dynamic varThe instance of StatefulLog used by with-log. By default unbound.
Source
->LogEntry
functionUsage: (->LogEntry logger-ns level throwable message)
Positional factory function for class clojure.tools.logging.test.LogEntry.
Source
functionUsage: (atomic-log log-entry-fn)
Returns a StatefulLog, appending to an atom the result of invoking
log-entry-fn with the same args as append!
Source
functionUsage: (logged? logger-ns level message)
(logged? logger-ns level throwable message)
Returns true if the log contains matching entries. See match-logger-ns?,
match-level?, match-throwable?, and match-message? for the default matching
behavior applied to the given args.
Must be invoked within a context where *stateful-log* is bound to an instance
of StatefulLog containing MatchableLogEntry items (e.g., inside with-log).
Source
functionUsage: (logger-factory stateful-log enabled-pred)
Returns a LoggerFactory that will append log entries to stateful-log. Levels
are enabled when (enabled-pred logger-ns level) is true.
Source
map->LogEntry
functionUsage: (map->LogEntry m#)
Factory function for class clojure.tools.logging.test.LogEntry, taking a map of keywords to field values.
Source
multimethodNo usage documentation available
Returns true if expected matches the actual level. Used by
LogEntry/matches? implementation.
Dises on the types of expected and actual.
Provided methods' dis values and matching:
:default if equal
[Fn Object] if (f actual) is logically true
[Set Object] if set contains actual
Source
multimethodNo usage documentation available
Returns true if expected matches the actual namespace. Used by
LogEntry/matches? implementation.
Dises on the types of expected and actual.
Provided methods' dis values and matching:
:default if equal
[Fn Object] if (f actual) is logically true
[String Namespace] if string equals namespace's string
[Symbol Namespace] if symbol equals namespace's symbol
Source
multimethodNo usage documentation available
Returns true if expected matches the actual message. Used by
LogEntry/matches? implementation.
Dises on the types of expected and actual.
Provided methods' dis values and matching:
:default if equal
[Fn Object] if (f actual) is logically true
[Pattern String] if pattern matches actual
Source
multimethodNo usage documentation available
Returns true if expected matches the actual throwable. Used by
LogEntry/matches? implementation.
Dises on the types of expected and actual. If expected is a vector, will
instead use a vector of the contained types.
Provided methods' dis values and matching:
:default if equal
[Fn Object] if (f actual) is logically true
[Class Object] if actual is an instance of Class
[[Class String] Throwable] ... and if string equals exception message
[[Class Pattern] Throwable] ... and if pattern matches exception message
Source
functionUsage: (matches logger-ns level message)
(matches logger-ns level throwable message)
Returns matching log entries, otherwise nil. See match-logger-ns?,
match-level?, match-throwable?, and match-message? for the default matching
behavior applied to the given args.
Must be invoked within a context where *stateful-log* is bound to an instance
of StatefulLog containing MatchableLogEntry items (e.g., inside with-log).
Source
functionUsage: (the-log)
Returns the vector of current log entries.
Must be invoked within a context where *stateful-log* is bound to an instance
of StatefulLog containing MatchableLogEntry items (e.g., inside with-log).
Source