From 17546ff932fcf518b52d40780b6d16d3ca730919 Mon Sep 17 00:00:00 2001 From: Tom Faulhaber Date: Wed, 8 Sep 2010 00:13:40 -0700 Subject: Autodoc commit for 1.2.x/e4ea06c9, master/9212f644, 1.1.x/d132c5f1 --- branch-master/index.html | 2 +- branch-master/logging-api.html | 92 +++++++++++++++++++++--------------------- 2 files changed, 47 insertions(+), 47 deletions(-) diff --git a/branch-master/index.html b/branch-master/index.html index 44131627..c17b39f8 100644 --- a/branch-master/index.html +++ b/branch-master/index.html @@ -1178,7 +1178,7 @@ Unless otherwise specified, the current namespace (as identified by *ns*) will be used as the log-ns (similar to how the java class name is usually used). Note: your log configuration should display the name that was passed to the logging implementation, and not perform stack-inspection, otherwise you'll see -something like "fn__72$impl_write_BANG__39__auto____81" in your logs. +some ugly and unhelpful text in your logs. Use the enabled? macro to write conditional code against the logging level (beyond simply whether or not to call log, which is handled automatically). diff --git a/branch-master/logging-api.html b/branch-master/logging-api.html index 5a575bc0..eff8d10b 100644 --- a/branch-master/logging-api.html +++ b/branch-master/logging-api.html @@ -168,7 +168,7 @@ Unless otherwise specified, the current namespace (as identified by *ns*) will be used as the log-ns (similar to how the java class name is usually used). Note: your log configuration should display the name that was passed to the logging implementation, and not perform stack-inspection, otherwise you'll see -something like "fn__72$impl_write_BANG__39__auto____81" in your logs. +some ugly and unhelpful text in your logs. Use the enabled? macro to write conditional code against the logging level (beyond simply whether or not to call log, which is handled automatically). @@ -202,7 +202,7 @@ in the user namespace, and :warn or higher in all other namespaces. agent. Defaults to nil. See log* for details. - Source + Source


@@ -215,7 +215,7 @@ returned from find-factory. Can be rebound to provide alternate logging implementations - Source + Source


@@ -226,7 +226,7 @@ implementations disabled. See log* for details. - Source + Source


@@ -237,7 +237,7 @@ disabled. See log* for details. running transaction. Defaults to #{:info :warn}. See log* for details. - Source + Source


@@ -249,7 +249,7 @@ implementation. Implementations should at least support the six specified logging levels if they wish to benefit from the level-specific macros. - Source + Source


@@ -262,7 +262,7 @@ Implementations should be bound to *log-factory* in order to be picked up by this library. - Source + Source


@@ -274,19 +274,19 @@ this library. nil if not available. End-users should not need to call this. - Source + Source


debug

macro
-
Usage: (debug level message & more)
-       (debug level throwable message & more)
+  
Usage: (debug message & more)
+       (debug throwable message & more)
 
Debug level logging using print-style args.
- Source + Source


@@ -298,7 +298,7 @@ nil if not available. End-users should not need to call this.
Debug level logging using format.
- Source + Source


@@ -312,19 +312,19 @@ should only be necessary if one needs to execute alternate code paths beyond whether the log should be written to. - Source + Source


error

macro
-
Usage: (error level message & more)
-       (error level throwable message & more)
+  
Usage: (error message & more)
+       (error throwable message & more)
 
Error level logging using print-style args.
- Source + Source


@@ -336,19 +336,19 @@ whether the log should be written to.
Error level logging using format.
- Source + Source


fatal

macro
-
Usage: (fatal level message & more)
-       (fatal level throwable message & more)
+  
Usage: (fatal message & more)
+       (fatal throwable message & more)
 
Fatal level logging using print-style args.
- Source + Source


@@ -360,7 +360,7 @@ whether the log should be written to.
Fatal level logging using format.
- Source + Source


@@ -373,7 +373,7 @@ slf4j-logging, log4j-logging, or java-util-logging. End-users should not need to call this. - Source + Source


@@ -426,13 +426,13 @@ to call this.

info

macro
-
Usage: (info level message & more)
-       (info level throwable message & more)
+  
Usage: (info message & more)
+       (info throwable message & more)
 
Info level logging using print-style args.
- Source + Source


@@ -444,7 +444,7 @@ to call this.
Info level logging using format.
- Source + Source


@@ -456,7 +456,7 @@ to call this. or nil if not available. End-users should not need to call this. - Source + Source


@@ -471,7 +471,7 @@ or nil if not available. End-users should not need to call this. for more details. - Source + Source


@@ -493,7 +493,7 @@ One can override the above by setting *force* to :direct or :agent; all subsequent writes will be direct or via an agent, respectively. - Source + Source


@@ -513,7 +513,7 @@ Warning: if the logging implementation is configured to output to System.out result in StackOverflowException when writing to the log. - Source + Source


@@ -524,7 +524,7 @@ result in StackOverflowException when writing to the log.
Creates a PrintStream that will output to the log at the specified level.
- Source + Source


@@ -535,7 +535,7 @@ result in StackOverflowException when writing to the log.
Restores System.out and System.err to their original values.
- Source + Source


@@ -547,7 +547,7 @@ result in StackOverflowException when writing to the log. not available. End-users should not need to call this. - Source + Source


@@ -560,7 +560,7 @@ not available. End-users should not need to call this. throwable as its second arg. See level-specific macros, e.g., debugf. - Source + Source


@@ -573,7 +573,7 @@ throwable as its second arg. See level-specific macros, e.g., debugf. second arg. See level-specific macros, e.g., debug. - Source + Source


@@ -585,7 +585,7 @@ second arg. See level-specific macros, e.g., debug. not available. End-users should not need to call this. - Source + Source


@@ -598,19 +598,19 @@ not available. End-users should not need to call this. result of expr. Defaults to debug log level. - Source + Source


trace

macro
-
Usage: (trace level message & more)
-       (trace level throwable message & more)
+  
Usage: (trace message & more)
+       (trace throwable message & more)
 
Trace level logging using print-style args.
- Source + Source


@@ -622,19 +622,19 @@ result of expr. Defaults to debug log level.
Trace level logging using format.
- Source + Source


warn

macro
-
Usage: (warn level message & more)
-       (warn level throwable message & more)
+  
Usage: (warn message & more)
+       (warn throwable message & more)
 
Warn level logging using print-style args.
- Source + Source


@@ -646,7 +646,7 @@ result of expr. Defaults to debug log level.
Warn level logging using format.
- Source + Source


@@ -661,7 +661,7 @@ specified log-ns value will be used to namespace all log entries. By default *out* and *err* write to :info and :error, respectively. - Source + Source
-- cgit v1.2.3-18-g5258