Author: ihabunek
Date: Tue Jan 25 07:50:47 2011
New Revision: 1063161

URL: http://svn.apache.org/viewvc?rev=1063161&view=rev
Log:
Removed the no longer supported debug="true" attribute from XML configuration 
examples.

Modified:
    logging/log4php/trunk/src/examples/resources/configurator_xml.xml
    logging/log4php/trunk/src/examples/resources/filter_denyall.xml
    logging/log4php/trunk/src/examples/resources/filter_levelmatch.xml
    logging/log4php/trunk/src/examples/resources/filter_levelrange.xml
    logging/log4php/trunk/src/examples/resources/filter_stringmatch.xml

Modified: logging/log4php/trunk/src/examples/resources/configurator_xml.xml
URL: 
http://svn.apache.org/viewvc/logging/log4php/trunk/src/examples/resources/configurator_xml.xml?rev=1063161&r1=1063160&r2=1063161&view=diff
==============================================================================
--- logging/log4php/trunk/src/examples/resources/configurator_xml.xml (original)
+++ logging/log4php/trunk/src/examples/resources/configurator_xml.xml Tue Jan 
25 07:50:47 2011
@@ -15,8 +15,7 @@
  See the License for the specific language governing permissions and
  limitations under the License.
 -->
-<log4php:configuration xmlns:log4php="http://logging.apache.org/log4php/";
-       threshold="all" debug="false">
+<log4php:configuration xmlns:log4php="http://logging.apache.org/log4php/"; 
threshold="all">
        <appender name="default" class="LoggerAppenderEcho">
                <layout class="LoggerLayoutTTCC" />
        </appender>

Modified: logging/log4php/trunk/src/examples/resources/filter_denyall.xml
URL: 
http://svn.apache.org/viewvc/logging/log4php/trunk/src/examples/resources/filter_denyall.xml?rev=1063161&r1=1063160&r2=1063161&view=diff
==============================================================================
--- logging/log4php/trunk/src/examples/resources/filter_denyall.xml (original)
+++ logging/log4php/trunk/src/examples/resources/filter_denyall.xml Tue Jan 25 
07:50:47 2011
@@ -15,9 +15,7 @@
  See the License for the specific language governing permissions and
  limitations under the License.
 -->
-<log4php:configuration
-  xmlns:log4php="http://logging.apache.org/log4php/";
-  threshold="all" debug="false">
+<log4php:configuration xmlns:log4php="http://logging.apache.org/log4php/"; 
threshold="all">
     <appender name="default" class="LoggerAppenderEcho">
         <layout class="LoggerLayoutTTCC"/>
         <filter class="LoggerFilterDenyAll"/>

Modified: logging/log4php/trunk/src/examples/resources/filter_levelmatch.xml
URL: 
http://svn.apache.org/viewvc/logging/log4php/trunk/src/examples/resources/filter_levelmatch.xml?rev=1063161&r1=1063160&r2=1063161&view=diff
==============================================================================
--- logging/log4php/trunk/src/examples/resources/filter_levelmatch.xml 
(original)
+++ logging/log4php/trunk/src/examples/resources/filter_levelmatch.xml Tue Jan 
25 07:50:47 2011
@@ -15,18 +15,16 @@
  See the License for the specific language governing permissions and
  limitations under the License.
 -->
-<log4php:configuration
-  xmlns:log4php="http://logging.apache.org/log4php/";
-  threshold="all" debug="false">
-    <appender name="default" class="LoggerAppenderEcho">
-        <layout class="LoggerLayoutTTCC"/>
-        <filter class="LoggerFilterLevelMatch">
-            <param name="LevelToMatch" value="DEBUG" />
-            <param name="AcceptOnMatch" value="false" />
-        </filter>
-    </appender>
-    <root>
-        <level value="DEBUG" />
-        <appender_ref ref="default" />
-    </root>
+<log4php:configuration xmlns:log4php="http://logging.apache.org/log4php/"; 
threshold="all">
+       <appender name="default" class="LoggerAppenderEcho">
+               <layout class="LoggerLayoutTTCC" />
+               <filter class="LoggerFilterLevelMatch">
+                       <param name="LevelToMatch" value="DEBUG" />
+                       <param name="AcceptOnMatch" value="false" />
+               </filter>
+       </appender>
+       <root>
+               <level value="DEBUG" />
+               <appender_ref ref="default" />
+       </root>
 </log4php:configuration>

Modified: logging/log4php/trunk/src/examples/resources/filter_levelrange.xml
URL: 
http://svn.apache.org/viewvc/logging/log4php/trunk/src/examples/resources/filter_levelrange.xml?rev=1063161&r1=1063160&r2=1063161&view=diff
==============================================================================
--- logging/log4php/trunk/src/examples/resources/filter_levelrange.xml 
(original)
+++ logging/log4php/trunk/src/examples/resources/filter_levelrange.xml Tue Jan 
25 07:50:47 2011
@@ -15,19 +15,17 @@
  See the License for the specific language governing permissions and
  limitations under the License.
 -->
-<log4php:configuration
-  xmlns:log4php="http://logging.apache.org/log4php/";
-  threshold="all" debug="false">
-    <appender name="default" class="LoggerAppenderEcho">
-        <layout class="LoggerLayoutTTCC"/>
-        <filter class="LoggerFilterLevelRange">
-            <param name="LevelMin" value="ERROR" />
-                        <param name="LevelMax" value="FATAL" />
-            <param name="AcceptOnMatch" value="false" />
-        </filter>
-    </appender>
-    <root>
-        <level value="DEBUG" />
-        <appender_ref ref="default" />
-    </root>
+<log4php:configuration xmlns:log4php="http://logging.apache.org/log4php/"; 
threshold="all">
+       <appender name="default" class="LoggerAppenderEcho">
+               <layout class="LoggerLayoutTTCC" />
+               <filter class="LoggerFilterLevelRange">
+                       <param name="levelMin" value="ERROR" />
+                       <param name="levelMax" value="FATAL" />
+                       <param name="acceptOnMatch" value="false" />
+               </filter>
+       </appender>
+       <root>
+               <level value="DEBUG" />
+               <appender_ref ref="default" />
+       </root>
 </log4php:configuration>

Modified: logging/log4php/trunk/src/examples/resources/filter_stringmatch.xml
URL: 
http://svn.apache.org/viewvc/logging/log4php/trunk/src/examples/resources/filter_stringmatch.xml?rev=1063161&r1=1063160&r2=1063161&view=diff
==============================================================================
--- logging/log4php/trunk/src/examples/resources/filter_stringmatch.xml 
(original)
+++ logging/log4php/trunk/src/examples/resources/filter_stringmatch.xml Tue Jan 
25 07:50:47 2011
@@ -15,16 +15,16 @@
  See the License for the specific language governing permissions and
  limitations under the License.
 -->
-<log4php:configuration xmlns:log4php="http://logging.apache.org/log4php/"; 
threshold="all" debug="false">
-    <appender name="default" class="LoggerAppenderEcho">
-        <layout class="LoggerLayoutTTCC"/>
-        <filter class="LoggerFilterStringMatch">
-            <param name="StringToMatch" value="match" />
-            <param name="AcceptOnMatch" value="false" />
-        </filter>
-    </appender>
-    <root>
-        <level value="DEBUG" />
-        <appender_ref ref="default" />
-    </root>
+<log4php:configuration xmlns:log4php="http://logging.apache.org/log4php/"; 
threshold="all">
+       <appender name="default" class="LoggerAppenderEcho">
+               <layout class="LoggerLayoutTTCC" />
+               <filter class="LoggerFilterStringMatch">
+                       <param name="StringToMatch" value="match" />
+                       <param name="AcceptOnMatch" value="false" />
+               </filter>
+       </appender>
+       <root>
+               <level value="DEBUG" />
+               <appender_ref ref="default" />
+       </root>
 </log4php:configuration>


Reply via email to