Author: tschoening Date: Sat Feb 22 15:50:28 2014 New Revision: 1570856 URL: http://svn.apache.org/r1570856 Log: test
Modified: incubator/log4cxx/site/publish/log4cxx-0.11.0-SNAPSHOT/index.html Modified: incubator/log4cxx/site/publish/log4cxx-0.11.0-SNAPSHOT/index.html URL: http://svn.apache.org/viewvc/incubator/log4cxx/site/publish/log4cxx-0.11.0-SNAPSHOT/index.html?rev=1570856&r1=1570855&r2=1570856&view=diff ============================================================================== --- incubator/log4cxx/site/publish/log4cxx-0.11.0-SNAPSHOT/index.html (original) +++ incubator/log4cxx/site/publish/log4cxx-0.11.0-SNAPSHOT/index.html Sat Feb 22 15:50:28 2014 @@ -41,10 +41,10 @@ </div> </div> <div id="breadcrumbs"> - - + + <div class="xleft"> - <span id="publishDate">Last Published: 2012-07-07</span> + <span id="publishDate">Last Published: 2014-02-22</span> | <span id="projectVersion">Version: 0.11.0-SNAPSHOT</span> | <a href="http://www.apache.org/" class="externalLink" title="Apache">Apache</a> > @@ -52,8 +52,8 @@ > <a href="./" title="log4cxx">log4cxx</a> </div> - <div class="xright"> - + <div class="xright"> + </div> <div class="clear"> <hr/> @@ -61,8 +61,8 @@ </div> <div id="leftColumn"> <div id="navcolumn"> - - + + <h5>Get Apache log4cxx</h5> <ul> <li class="none"> @@ -143,8 +143,8 @@ <a href="http://maven.apache.org/" title="Built by Maven" class="poweredBy"> <img class="poweredBy" alt="Built by Maven" src="./images/logos/maven-feather.png" /> </a> - - + + </div> </div> <div id="bodyColumn"> @@ -164,18 +164,18 @@ See the License for the specific language governing permissions and limitations under the License. --> - + <div class="section"><h2>Short introduction to Apache log4cxx<a name="Short_introduction_to_Apache_log4cxx"></a></h2> <div class="section"><h2>Introduction<a name="Introduction"></a></h2> -Apache log4cxx is a logging framework for C++ patterned after +Apache log4cxx is a logging framework for C++ patterned after <a class="externalLink" href="http://logging.apache.org/log4j">Apache log4j</a>. Apache log4cxx uses <a class="externalLink" href="http://apr.apache.org">Apache Portable Runtime</a> for most platform-specific code and should be usable on any -platform supported by APR. Apache log4cxx is licensed under the +platform supported by APR. Apache log4cxx is licensed under the <a class="externalLink" href="http://www.apache.org/licenses/">Apache License</a>, -an open source license certified by the +an open source license certified by the <a class="externalLink" href="http://www.opensource.org/">Open Source Initiative</a>. <p>Almost every large application includes its own logging or tracing @@ -275,15 +275,15 @@ below.</p> // // Use these macros instead of calling Logger methods directly. // Macros will handle char or wchar_t pointers or strings -// or most right-hand side expressions of an +// or most right-hand side expressions of an // std::basic_string::operator<<. -// -#define LOG4CXX_TRACE(logger, expression) ... -#define LOG4CXX_DEBUG(logger, expression) ... -#define LOG4CXX_INFO(logger, expression) ... -#define LOG4CXX_WARN(logger, expression) ... -#define LOG4CXX_ERROR(logger, expression) ... -#define LOG4CXX_FATAL(logger, expression) ... +// +#define LOG4CXX_TRACE(logger, expression) ... +#define LOG4CXX_DEBUG(logger, expression) ... +#define LOG4CXX_INFO(logger, expression) ... +#define LOG4CXX_WARN(logger, expression) ... +#define LOG4CXX_ERROR(logger, expression) ... +#define LOG4CXX_FATAL(logger, expression) ... </pre></div> </td> </tr> @@ -329,7 +329,7 @@ resulting inherited levels according to <tr class="a" align="left"><td>X </td> <td>none</td> <td>Proot</td></tr> <tr class="b" align="left"><td>X.Y </td> <td>none</td> <td>Proot</td></tr> <tr class="a" align="left"><td>X.Y.Z</td> <td>none</td> <td>Proot</td></tr> - + </table> <p>In example 1 above, only the root logger is assigned a @@ -346,7 +346,7 @@ other loggers <tt>X</tt>, <tt>X.Y</tt> a <tr class="a" align="left"><td>X </td> <td>Px</td> <td>Px</td></tr> <tr class="b" align="left"><td>X.Y </td> <td>Pxy</td> <td>Pxy</td></tr> <tr class="a" align="left"><td>X.Y.Z</td> <td>Pxyz</td> <td>Pxyz</td></tr> - + </table> <p>In example 2, all loggers have an assigned level value. There @@ -359,7 +359,7 @@ is no need for level inheritence.</p> <tr class="a" align="left"><td>X </td> <td>Px</td> <td>Px</td></tr> <tr class="b" align="left"><td>X.Y </td> <td>none</td> <td>Px</td></tr> <tr class="a" align="left"><td>X.Y.Z</td> <td>Pxyz</td> <td>Pxyz</td></tr> - + </table> <p>In example 3, the loggers <tt>root</tt>, <tt>X</tt> and @@ -375,7 +375,7 @@ is no need for level inheritence.</p> <tr class="a" align="left"><td>X </td> <td>Px</td> <td>Px</td></tr> <tr class="b" align="left"><td>X.Y </td> <td>none</td> <td>Px</td></tr> <tr class="a" align="left"><td>X.Y.Z</td> <td>none</td> <td>Px</td></tr> - + </table> <p>In example 4, the loggers <tt>root</tt> and <tt>X</tt> @@ -398,7 +398,7 @@ and use of the insertion operator (<& LOG4CXX_DEBUG(logger, L"Iteration " << i) LOG4CXX_DEBUG(logger, "e^10 = " << std::scientific << exp(10.0)) // - // Use a wchar_t first operand to force use of wchar_t based stream. + // Use a wchar_t first operand to force use of wchar_t based stream. // LOG4CXX_WARN(logger, L"" << i << L" is the number of the iteration.") </pre></div></td></tr></table> @@ -690,7 +690,7 @@ namespace com { namespace foo { class Bar { static log4cxx::LoggerPtr logger; - + public: void doIt(); } @@ -898,22 +898,22 @@ automatically configure log4cxx.</p> <ol style="list-style-type: decimal"> - <li><p>Set the configurationOptionStr string variable to the value of the - <b>LOG4CXX_CONFIGURATION</b> environment variable if set, otherwise + <li><p>Set the configurationOptionStr string variable to the value of the + <b>LOG4CXX_CONFIGURATION</b> environment variable if set, otherwise the value of the <b>log4j.configuration</b> or <b>LOG4CXX_CONFIGURATION</b> - environment variable if set, - otherwise the first of the following file names which exist in the - current working directory, "log4cxx.xml", "log4cxx.properties", - "log4j.xml" and "log4j.properties". - If configurationOptionStr has not been set, then disable logging.</p></li> + environment variable if set, + otherwise the first of the following file names which exist in the + current working directory, "log4cxx.xml", "log4cxx.properties", + "log4j.xml" and "log4j.properties". + If configurationOptionStr has not been set, then disable logging.</p></li> - <li><p>Unless a custom configurator is specified using the + <li><p>Unless a custom configurator is specified using the <b>LOG4CXX_CONFIGURATOR_CLASS</b> or <b>log4j.configuratorClass</b> environment variable, the PropertyConfigurator will be used to configure - log4cxx unless the file name ends with the ".xml" extension, - in which case the DOMConfigurator will be used. - If a custom configurator is specified, the environment variable - should contain a fully qualified class name of a class that + log4cxx unless the file name ends with the ".xml" extension, + in which case the DOMConfigurator will be used. + If a custom configurator is specified, the environment variable + should contain a fully qualified class name of a class that implements the Configurator interface.</p> </li> @@ -1073,8 +1073,8 @@ performance cost.</p> <div id="footer"> <div class="xleft">Copyright © 2012 <a href="http://www.apache.org">Apache Software Foundation</a>. - - + + Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache Software License, Version 2.0</a>.</div> <div class="xleft">Apache log4cxx, Apache, the Apache feather logo, the Apache Logging Services project logo and the Built by Maven logo are trademarks of The Apache Software Foundation.</div>