|
From: <hu...@us...> - 2006-10-26 18:25:25
|
Revision: 321
http://svn.sourceforge.net/cishell/?rev=321&view=rev
Author: huangb
Date: 2006-10-26 11:22:21 -0700 (Thu, 26 Oct 2006)
Log Message:
-----------
minus change to adjust the printout messages on the console.
Modified Paths:
--------------
trunk/clients/gui/org.cishell.reference.gui.menumanager/src/org/cishell/reference/gui/menumanager/menu/AlgorithmAction.java
trunk/clients/gui/org.cishell.reference.gui.menumanager/src/org/cishell/reference/gui/menumanager/menu/AlgorithmWrapper.java
Modified: trunk/clients/gui/org.cishell.reference.gui.menumanager/src/org/cishell/reference/gui/menumanager/menu/AlgorithmAction.java
===================================================================
--- trunk/clients/gui/org.cishell.reference.gui.menumanager/src/org/cishell/reference/gui/menumanager/menu/AlgorithmAction.java 2006-10-26 17:52:03 UTC (rev 320)
+++ trunk/clients/gui/org.cishell.reference.gui.menumanager/src/org/cishell/reference/gui/menumanager/menu/AlgorithmAction.java 2006-10-26 18:22:21 UTC (rev 321)
@@ -82,9 +82,10 @@
LogService logger = (LogService) ciContext.getService(LogService.class.getName());
String label = (String)ref.getProperty("label");
- if (label != null)
+ if (label != null){
+ logger.log(LogService.LOG_INFO, "..........");
logger.log(LogService.LOG_INFO, label+" was selected.");
-
+ }
String authors = (String)ref.getProperty("authors");
if (authors != null)
logger.log(LogService.LOG_INFO, "Author(s): "+authors);
Modified: trunk/clients/gui/org.cishell.reference.gui.menumanager/src/org/cishell/reference/gui/menumanager/menu/AlgorithmWrapper.java
===================================================================
--- trunk/clients/gui/org.cishell.reference.gui.menumanager/src/org/cishell/reference/gui/menumanager/menu/AlgorithmWrapper.java 2006-10-26 17:52:03 UTC (rev 320)
+++ trunk/clients/gui/org.cishell.reference.gui.menumanager/src/org/cishell/reference/gui/menumanager/menu/AlgorithmWrapper.java 2006-10-26 18:22:21 UTC (rev 321)
@@ -72,7 +72,7 @@
if (logger != null) {
if (!this.parameters.isEmpty()) {
logger.log(LogService.LOG_INFO, "");
- logger.log(LogService.LOG_INFO, "Input Parameters Used:");
+ logger.log(LogService.LOG_INFO, "Input Parameters:");
for (Enumeration e = this.parameters.keys(); e
.hasMoreElements();) {
String key = (String) e.nextElement();
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|