details: https://code.openbravo.com/erp/devel/pi/rev/77cbc3497ee0 changeset: 22336:77cbc3497ee0 user: Asier Lostalé <asier.lostale <at> openbravo.com> date: Tue Mar 04 08:02:13 2014 +0100 summary: fixed bug 25887: Hidden stack executing failing module script
diffstat: src-core/src/org/openbravo/modulescript/ModuleScriptHandler.java | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diffs (20 lines): diff -r ee45d9f4b830 -r 77cbc3497ee0 src-core/src/org/openbravo/modulescript/ModuleScriptHandler.java --- a/src-core/src/org/openbravo/modulescript/ModuleScriptHandler.java Tue Feb 04 17:39:02 2014 +0530 +++ b/src-core/src/org/openbravo/modulescript/ModuleScriptHandler.java Tue Mar 04 08:02:13 2014 +0100 @@ -1,6 +1,6 @@ /* ************************************************************************************ - * Copyright (C) 2010 Openbravo S.L.U. + * Copyright (C) 2010-2014 Openbravo S.L.U. * Licensed under the Apache Software License version 2.0 * You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 * Unless required by applicable law or agreed to in writing, software distributed @@ -64,7 +64,7 @@ callExecute(myClass, instance); } } catch (Exception e) { - log4j.error("Error executing moduleScript: " + s); + log4j.error("Error executing moduleScript: " + s, e); throw new BuildException("Execution of moduleScript " + s + "failed."); } } ------------------------------------------------------------------------------ Subversion Kills Productivity. Get off Subversion & Make the Move to Perforce. With Perforce, you get hassle-free workflows. Merge that actually works. Faster operations. Version large binaries. Built-in WAN optimization and the freedom to use Git, Perforce or both. Make the move to Perforce. http://pubads.g.doubleclick.net/gampad/clk?id=122218951&iu=/4140/ostg.clktrk _______________________________________________ Openbravo-commits mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openbravo-commits
