Author: chammers
Date: Tue Oct 6 19:29:34 2009
New Revision: 822453
URL: http://svn.apache.org/viewvc?rev=822453&view=rev
Log:
Last patch with only phpdoc changes
Modified:
incubator/log4php/trunk/src/main/php/LoggerMDC.php
incubator/log4php/trunk/src/main/php/LoggerNDC.php
incubator/log4php/trunk/src/main/php/configurators/LoggerConfiguratorIni.php
incubator/log4php/trunk/src/main/php/renderers/LoggerRendererObject.php
Modified: incubator/log4php/trunk/src/main/php/LoggerMDC.php
URL:
http://svn.apache.org/viewvc/incubator/log4php/trunk/src/main/php/LoggerMDC.php?rev=822453&r1=822452&r2=822453&view=diff
==============================================================================
--- incubator/log4php/trunk/src/main/php/LoggerMDC.php (original)
+++ incubator/log4php/trunk/src/main/php/LoggerMDC.php Tue Oct 6 19:29:34 2009
@@ -36,6 +36,11 @@
*
* <p><b><i>The MDC is managed on a per thread basis</i></b>.
*
+ * <p>This class is similar to the {...@link LoggerNDC} class except that
+ * it is based on a map instead of a stack.
+ *
+ * <p><b><i>The MDC is managed on a per thread basis</i></b>.
+ *
* Example:
*
* {...@example ../../examples/php/mdc.php}<br>
Modified: incubator/log4php/trunk/src/main/php/LoggerNDC.php
URL:
http://svn.apache.org/viewvc/incubator/log4php/trunk/src/main/php/LoggerNDC.php?rev=822453&r1=822452&r2=822453&view=diff
==============================================================================
--- incubator/log4php/trunk/src/main/php/LoggerNDC.php (original)
+++ incubator/log4php/trunk/src/main/php/LoggerNDC.php Tue Oct 6 19:29:34 2009
@@ -39,6 +39,9 @@
* <p>This class is similar to the {...@link LoggerMDC} class except that it is
* based on a stack instead of a map.
*
+ * <p>This class is similar to the {...@link LoggerMDC} class except that it is
+ * based on a stack instead of a map.
+ *
* <p>Interleaved log output can still be meaningful if each log entry
* from different contexts had a distinctive stamp. This is where NDCs
* come into play.
Modified:
incubator/log4php/trunk/src/main/php/configurators/LoggerConfiguratorIni.php
URL:
http://svn.apache.org/viewvc/incubator/log4php/trunk/src/main/php/configurators/LoggerConfiguratorIni.php?rev=822453&r1=822452&r2=822453&view=diff
==============================================================================
---
incubator/log4php/trunk/src/main/php/configurators/LoggerConfiguratorIni.php
(original)
+++
incubator/log4php/trunk/src/main/php/configurators/LoggerConfiguratorIni.php
Tue Oct 6 19:29:34 2009
@@ -68,6 +68,14 @@
*
* {...@example ../../examples/resources/appender_dailyfile.properties}
*
+ * <p>An example how to use this appender:</p>
+ *
+ * {...@example ../../examples/php/appender_dailyfile.php}
+ *
+ * <p>And the corresponding ini file:</p>
+ *
+ * {...@example ../../examples/resources/appender_dailyfile.properties}
+ *
* @version $Revision$
* @package log4php
* @subpackage configurators
Modified:
incubator/log4php/trunk/src/main/php/renderers/LoggerRendererObject.php
URL:
http://svn.apache.org/viewvc/incubator/log4php/trunk/src/main/php/renderers/LoggerRendererObject.php?rev=822453&r1=822452&r2=822453&view=diff
==============================================================================
--- incubator/log4php/trunk/src/main/php/renderers/LoggerRendererObject.php
(original)
+++ incubator/log4php/trunk/src/main/php/renderers/LoggerRendererObject.php Tue
Oct 6 19:29:34 2009
@@ -19,7 +19,7 @@
*/
/**
- * Subclass this abstract class in order to render objects as strings.
+ * Implement this interface in order to render objects as strings using
{...@link LoggerRendererMap}.
*
* Implement this interface in order to render objects as strings using
{...@link LoggerRendererMap}.
*