You are viewing a plain text version of this content. The canonical link for it is here.
Posted to log4php-dev@logging.apache.org by ch...@apache.org on 2009/10/29 23:30:41 UTC

svn commit: r831123 - in /incubator/log4php/trunk: package.php pom.xml

Author: chammers
Date: Thu Oct 29 22:30:41 2009
New Revision: 831123

URL: http://svn.apache.org/viewvc?rev=831123&view=rev
Log:
After the recent introduction of "-d memory_limit" it's no longer necessary to
hide the output of "pear package". Showing it on the other hand is really useful
if PEAR_PackageManager2 etc. are not installed.
The debug output in package.php is not necessary either and has been disabled.

Modified:
    incubator/log4php/trunk/package.php
    incubator/log4php/trunk/pom.xml

Modified: incubator/log4php/trunk/package.php
URL: http://svn.apache.org/viewvc/incubator/log4php/trunk/package.php?rev=831123&r1=831122&r2=831123&view=diff
==============================================================================
--- incubator/log4php/trunk/package.php (original)
+++ incubator/log4php/trunk/package.php Thu Oct 29 22:30:41 2009
@@ -62,7 +62,7 @@
 
 $package->generateContents();
 
-$package->debugPackageFile();
+// $package->debugPackageFile();
 
 $result = $package->writePackageFile();
 if(PEAR::isError($result)) {

Modified: incubator/log4php/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/log4php/trunk/pom.xml?rev=831123&r1=831122&r2=831123&view=diff
==============================================================================
--- incubator/log4php/trunk/pom.xml (original)
+++ incubator/log4php/trunk/pom.xml Thu Oct 29 22:30:41 2009
@@ -192,7 +192,7 @@
                                         <include name="**/*.php"/>      
                                     </fileset>      
                                 </copy>
-                                <exec executable="php" dir="target/pear" output="target/package.php.stdout">
+                                <exec executable="php" dir="target/pear">
                                     <arg line="-d error_reporting=6143"/> <!-- E_ALL & ~E_STRICT -->
                                     <arg line="../../package.php"/>
                                 </exec>