From: <mwl...@us...> - 2008-08-13 17:09:14
|
Revision: 797 http://cishell.svn.sourceforge.net/cishell/?rev=797&view=rev Author: mwlinnem Date: 2008-08-13 17:09:07 +0000 (Wed, 13 Aug 2008) Log Message: ----------- Improved the error message for when an algorithm specified in the menu.xml file cannot be found. Modified Paths: -------------- trunk/clients/gui/org.cishell.reference.gui.menumanager/src/org/cishell/reference/gui/menumanager/menu/MenuAdapter.java Modified: trunk/clients/gui/org.cishell.reference.gui.menumanager/src/org/cishell/reference/gui/menumanager/menu/MenuAdapter.java =================================================================== --- trunk/clients/gui/org.cishell.reference.gui.menumanager/src/org/cishell/reference/gui/menumanager/menu/MenuAdapter.java 2008-08-05 18:19:56 UTC (rev 796) +++ trunk/clients/gui/org.cishell.reference.gui.menumanager/src/org/cishell/reference/gui/menumanager/menu/MenuAdapter.java 2008-08-13 17:09:07 UTC (rev 797) @@ -311,8 +311,9 @@ else{ //otherwise log the error getLog().log(LogService.LOG_DEBUG, - "Can not find an algorithm package associated with Menu: " - +menuName+" and pid: " +pid+ ". Skip to show it on the menu."); + "Oops! Network Workbench tried to place an algorithm with the id '" + pid + "' on the menu, but the algorithm could not be found."); + getLog().log(LogService.LOG_DEBUG, "If you see this error, please contact nwb...@go..., or post a ticket on our bug tracker at " + + "http://cns-trac.slis.indiana.edu/trac/nwb. "); } } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |