Repository: logging-log4j2 Updated Branches: refs/heads/master f51f63971 -> 965c9342b
[LOG4J2-1126] Site fixes/improvements for 2.4 release. Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/965c9342 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/965c9342 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/965c9342 Branch: refs/heads/master Commit: 965c9342bcfa30465634af41294d10b8537e0db6 Parents: f51f639 Author: ggregory <[email protected]> Authored: Mon Sep 21 15:13:13 2015 -0700 Committer: ggregory <[email protected]> Committed: Mon Sep 21 15:13:13 2015 -0700 ---------------------------------------------------------------------- src/site/xdoc/manual/layouts.xml.vm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/965c9342/src/site/xdoc/manual/layouts.xml.vm ---------------------------------------------------------------------- diff --git a/src/site/xdoc/manual/layouts.xml.vm b/src/site/xdoc/manual/layouts.xml.vm index 0127bb2..c32e227 100644 --- a/src/site/xdoc/manual/layouts.xml.vm +++ b/src/site/xdoc/manual/layouts.xml.vm @@ -52,6 +52,10 @@ <a name="CSVLayouts"/> <subsection name="CSV Layouts"> <p> + This layout creates <a href="https://en.wikipedia.org/wiki/Comma-separated_values">Comma Separated Value (CSV)</a> + records and requires <a href="https://commons.apache.org/proper/commons-csv/">Apache Commons CSV</a> 1.2. + </p> + <p> The CSV layout can be used in two ways: First, using <code>CsvParameterLayout</code> to log event parameters to create a custom database, usually to a logger and file appender uniquely configured for this purpose. Second, using <code>CsvLogEventLayout</code> to log events to create a database, as an alternative to using a @@ -77,7 +81,7 @@ value1, value2, value3 logger.info(new ObjectArrayMessage(value1, value2, value3)); </pre> <p> - The layouts CsvParameterLayout and CsvLogEventLayout are configured with the following parameters: + The layouts <code>CsvParameterLayout</code> and <code>CsvLogEventLayout</code> are configured with the following parameters: </p> <table> <caption>CsvParameterLayout and CsvLogEventLayout</caption>
