You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2009/02/23 09:08:18 UTC

svn commit: r746911 - /ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/log/LogView.groovy

Author: jleroux
Date: Mon Feb 23 08:08:17 2009
New Revision: 746911

URL: http://svn.apache.org/viewvc?rev=746911&view=rev
Log:
A simpler solution than Eric DE MAULDE's "Error in log view layout" https://issues.apache.org/jira/browse/OFBIZ-2202 OFBIZ-2202

Modified:
    ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/log/LogView.groovy

Modified: ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/log/LogView.groovy
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/log/LogView.groovy?rev=746911&r1=746910&r2=746911&view=diff
==============================================================================
--- ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/log/LogView.groovy (original)
+++ ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/actions/log/LogView.groovy Mon Feb 23 08:08:17 2009
@@ -24,5 +24,5 @@
     sb = FileUtil.readTextFile(logFileName, true);
 } catch(Exception exc) {}
 if (sb) {
-    context.logFileContent = sb.toString();
+    context.logFileContent = sb;
 }