Revision: 504
http://gemstracker.svn.sourceforge.net/gemstracker/?rev=504&view=rev
Author: michieltcs
Date: 2012-02-21 15:06:33 +0000 (Tue, 21 Feb 2012)
Log Message:
-----------
Don't echo the exception (this causes memory problems with large contexts)
Modified Paths:
--------------
trunk/library/classes/MUtil/Batch/BatchAbstract.php
Modified: trunk/library/classes/MUtil/Batch/BatchAbstract.php
===================================================================
--- trunk/library/classes/MUtil/Batch/BatchAbstract.php 2012-02-20 14:44:29 UTC (rev 503)
+++ trunk/library/classes/MUtil/Batch/BatchAbstract.php 2012-02-21 15:06:33 UTC (rev 504)
@@ -777,7 +777,7 @@
$this->addMessage('While calling:' . $command['method'] . '(' . implode(',', MUtil_Ra::flatten($command['parameters'])) . ')');
$this->addMessage($e->getMessage());
- MUtil_Echo::r($e);
+ //MUtil_Echo::r($e);
}
return true;
} else {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|